Apply button has tick icon

This commit is contained in:
Jindra Petřík
2022-12-17 10:02:57 +01:00
parent 95452d752c
commit 6ffc2fd909
2 changed files with 1 additions and 1 deletions

View File

@@ -763,7 +763,7 @@ public class TransformPanel extends JPanel {
JPanel buttonsPanel = new JPanel(new FlowLayout());
JButton clearButton = new JButton(AppStrings.translate("transform.clear"));
clearButton.addActionListener(onClear);
JButton applyButton = new JButton(AppStrings.translate("transform.apply"));
JButton applyButton = new JButton(AppStrings.translate("transform.apply"), View.getIcon("apply16"));
applyButton.addActionListener(onApply);
buttonsPanel.add(clearButton);
buttonsPanel.add(applyButton);