Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public UpAction() {
putValue(Action.SHORT_DESCRIPTION,
tr("Move the selected repository up by one position"));
putValue(Action.SMALL_ICON,
ImageProvider.get("dialogs", "moveup"));
ImageProvider.get("dialogs", "up"));
updateEnabledState();
}

Expand Down Expand Up @@ -339,7 +339,7 @@ public DownAction() {
putValue(Action.SHORT_DESCRIPTION,
tr("Move the selected repository down by one position"));
putValue(Action.SMALL_ICON,
ImageProvider.get("dialogs", "movedown"));
ImageProvider.get("dialogs", "down"));
updateEnabledState();
}
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ private class UpAction extends AbstractAction implements ListSelectionListener {
public UpAction() {
putValue(Action.NAME, tr("Up"));
putValue(Action.SHORT_DESCRIPTION, tr("Move the selected path up by one position"));
putValue(Action.SMALL_ICON, saveImageGet("dialogs", "moveup"));
putValue(Action.SMALL_ICON, saveImageGet("dialogs", "up"));
updateEnabledState();
}

Expand All @@ -388,7 +388,7 @@ private class DownAction extends AbstractAction implements ListSelectionListener
public DownAction() {
putValue(Action.NAME, tr("Down"));
putValue(Action.SHORT_DESCRIPTION, tr("Move the selected repository down by one position"));
putValue(Action.SMALL_ICON, saveImageGet("dialogs", "movedown"));
putValue(Action.SMALL_ICON, saveImageGet("dialogs", "down"));
updateEnabledState();
}
@Override
Expand Down