mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 19:54:37 +00:00
optional ribbon fix
This commit is contained in:
@@ -607,7 +607,10 @@ public class MainFrameRibbonMenu extends MainFrameMenu {
|
||||
public void hilightPath(String path) {
|
||||
Object o = menuItems.get(path);
|
||||
if (o instanceof RibbonTask) {
|
||||
RibbonTask rt = (RibbonTask) o;
|
||||
if (menuOptional.get(path)) {
|
||||
return;
|
||||
}
|
||||
final RibbonTask rt = (RibbonTask) o;
|
||||
View.execInEventDispatch(new Runnable() {
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user