Ticket #169: libtool_fix_1_of_1_rev_1334d79e9cf4__169_When_changing_a_shortcut_key_for_button_send_it_should_show_the_current_shortcut.patch

File libtool_fix_1_of_1_rev_1334d79e9cf4__169_When_changing_a_shortcut_key_for_button_send_it_should_show_the_current_shortcut.patch, 1.1 KB (added by patrik.svestka@…, 7 years ago)

Fixing the Send button shortcut display

  • DebugView.st

    # HG changeset patch
    # User Patrik Svestka <patrik.svestka@gmail.com>
    # Date 1501572440 -7200
    #      Tue Aug 01 09:27:20 2017 +0200
    # Branch jv
    # Node ID 1334d79e9cf449b29082d084d2349c622371ee86
    # Parent  f206a20ab2675af1c35980581a9dad23620ecaec
    #169 When changing a shortcut key for button send it should show the current shortcut
    
    When a custom shortcut is specified for the button Send it should be displayed
    
    diff -r f206a20ab267 -r 1334d79e9cf4 DebugView.st
    a b  
    37963796
    37973797initializeStepButtonIn:bpanel
    37983798    stepButton := Button
    3799                 label:(resources string:'Debug_Step')
     3799                label:(resources string:'Debug_Step') , (self shortKeyStringForAction: #DebuggerStep)
    38003800                action:[
    38013801                    stepButton turnOff.
    38023802                    self doStep
     
    38043804                in:bpanel.
    38053805
    38063806    stepButton name:'stepButton'.
    3807 
    3808     "Created: / 17.11.2001 / 21:00:13 / cg"
    38093807!
    38103808
    38113809initializeTerminateButtonIn:bpanel