Skip to content

Commit 0b4f538

Browse files
committed
reduce icon size
1 parent 098f04b commit 0b4f538

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/openstreetmap/josm/plugins/scripting/ui/console/ScriptingConsolePanel.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ class RunScriptAction extends AbstractAction
179179
final private ScriptEditorModel model;
180180
public RunScriptAction(ScriptEditorModel model) {
181181
this.model = model;
182-
putValue(SMALL_ICON, ImageProvider.get("media-playback-start"));
182+
putValue(SMALL_ICON, ImageProvider.get("media-playback-start",
183+
ImageProvider.ImageSizes.SMALLICON));
183184
putValue(SHORT_DESCRIPTION, tr("Execute the script"));
184185
putValue(NAME, tr("Run"));
185186
model.addPropertyChangeListener(this);

0 commit comments

Comments
 (0)