Android Tab Grouping
This commit is contained in:
parent
9841ca151f
commit
4d863a6168
2 changed files with 7 additions and 1 deletions
|
@ -60,6 +60,9 @@ public class Configuration
|
|||
//if true the plugin writer will open inside of a tab
|
||||
public static boolean pluginWriterAsNewTab = true; //TODO add to GUI
|
||||
|
||||
//if true jadx will be above smali in an android grouping
|
||||
public static boolean jadxGroupedWithSmali = true; //TODO add to GUI
|
||||
|
||||
public static boolean forceResourceUpdateFromClassNode = false; //TODO add to GUI
|
||||
public static boolean showDarkLAFComponentIcons = false;
|
||||
public static boolean currentlyDumping = false;
|
||||
|
|
|
@ -141,11 +141,14 @@ public class DecompilerSelectionPane
|
|||
menu.add(new JSeparator());
|
||||
menu.add(procyon.getMenu());
|
||||
menu.add(CFR.getMenu());
|
||||
menu.add(JADX.getMenu());
|
||||
if(!Configuration.jadxGroupedWithSmali)
|
||||
menu.add(JADX.getMenu());
|
||||
menu.add(JD.getMenu());
|
||||
menu.add(fern.getMenu());
|
||||
menu.add(krakatau.getMenu());
|
||||
menu.add(new JSeparator());
|
||||
if(Configuration.jadxGroupedWithSmali)
|
||||
menu.add(JADX.getMenu());
|
||||
menu.add(smali.getMenu());
|
||||
menu.add(new JSeparator());
|
||||
menu.add(bytecode.getMenu());
|
||||
|
|
Loading…
Reference in a new issue