Refactor BindingDialog

This commit is contained in:
Reinhard Pointner 2016-08-08 15:09:15 +08:00
parent 76bb88042a
commit d60203c873
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class BindingDialog extends JDialog {
root.add(newButton("Use Bindings", ResourceManager.getIcon("dialog.continue"), evt -> finish(true)), "tag apply"); root.add(newButton("Use Bindings", ResourceManager.getIcon("dialog.continue"), evt -> finish(true)), "tag apply");
root.add(newButton("Cancel", ResourceManager.getIcon("dialog.cancel"), evt -> finish(false)), "tag cancel"); root.add(newButton("Cancel", ResourceManager.getIcon("dialog.cancel"), evt -> finish(false)), "tag cancel");
} else { } else {
root.add(newButton("OK", e -> finish(false)), "tag apply"); root.add(newButton("OK", e -> finish(false)), "tag ok");
} }
// update preview on change // update preview on change