selecting appropriate icon size for ribbon/nonribbon

This commit is contained in:
Jindra Petřík
2015-05-24 16:53:07 +02:00
parent b18d909c80
commit a85adfd4d5
8 changed files with 36 additions and 7 deletions

View File

@@ -737,9 +737,10 @@ public abstract class MainFrameMenu implements MenuBuilder {
addSeparator("/file");
addMenuItem("/file/close", translate("menu.file.close"), "close32", this::close, PRIORITY_MEDIUM, null, true);
addMenuItem("/file/closeAll", translate("menu.file.closeAll"), "close32", this::closeAll, PRIORITY_MEDIUM, null, true);
addMenuItem("/file/closeAll", translate("menu.file.closeAll"), "closeall32", this::closeAll, PRIORITY_MEDIUM, null, true);
if (!supportsAppMenu()) {
addSeparator("/file");
addMenuItem("/file/exit", translate("menu.file.exit"), "exit32", this::exit, PRIORITY_TOP, null, true);
}
finishMenu("/file");