Keep Search when switching between crafting and normal view.

This commit is contained in:
AlgorithmX2
2014-06-02 21:04:47 -05:00
parent a1af4443b7
commit fe74989563
3 changed files with 28 additions and 1 deletions
+9
View File
@@ -56,9 +56,18 @@ public abstract class AEBaseGui extends GuiContainer
protected List<InternalSlotME> meSlots = new LinkedList<InternalSlotME>();
protected GuiScrollbar myScrollBar = null;
static public boolean switchingGuis;
final private boolean subGui;
public AEBaseGui(Container container) {
super( container );
subGui = switchingGuis;
switchingGuis = false;
}
public boolean isSubGui()
{
return subGui;
}
@Override