Skip to content

Commit

Permalink
update icons to use (they should be integrated in pharo)
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Jan 17, 2025
1 parent 8039356 commit b25a6b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NewTools-ProcessBrowser/StProcessBrowser.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ StProcessBrowser >> buildGeneralToolbarActions [
^ SpActionGroup new
addActionWith: [ :action | action
name: 'Auto update';
iconName: #autoUpdate;
iconName: #autoReload;
description: 'Toggle auto processes update.';
beToggleButton;
action: [ self toggleAutoUpdate: action presenter state ] ];
Expand Down Expand Up @@ -159,14 +159,14 @@ StProcessBrowser >> buildProcessToolbarActions [
actionEnabled: [ self selectedProcess notNil ] ];
addActionWith: [ :action | action
name: 'Signal';
iconName: #signal;
iconName: #play;
description: 'Signal this process semaphore.';
shortcutKey: $s shift actionModifier;
action: [ self signalSelectedProcess ];
actionEnabled: [ self selectedProcess notNil ] ];
addActionWith: [ :action | action
name: 'Priority';
iconName: #priority;
iconName: #up;
description: 'Change priority of selected process.';
shortcutKey: $p actionModifier;
action: [ self changePriorityOfSelectedProcess ];
Expand Down

0 comments on commit b25a6b1

Please sign in to comment.