Merge pull request #6912 from trimbe/fullscreen-map-overlays
OverlayRenderer: Prevent overlays rendering if fullscreen map is open
This commit is contained in:
@@ -124,6 +124,7 @@ public class WidgetID
|
||||
public static final int LOOTING_BAG_GROUP_ID = 81;
|
||||
public static final int SKOTIZO_GROUP_ID = 308;
|
||||
public static final int ENTERING_HOUSE_GROUP_ID = 71;
|
||||
public static final int FULLSCREEN_MAP_GROUP_ID = 165;
|
||||
|
||||
static class WorldMap
|
||||
{
|
||||
@@ -740,4 +741,9 @@ public class WidgetID
|
||||
{
|
||||
static final int CONTAINER = 3;
|
||||
}
|
||||
|
||||
static class FullScreenMap
|
||||
{
|
||||
static final int ROOT = 25;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -460,7 +460,9 @@ public enum WidgetInfo
|
||||
|
||||
LOOTING_BAG_CONTAINER(WidgetID.LOOTING_BAG_GROUP_ID, WidgetID.LootingBag.LOOTING_BAG_INVENTORY),
|
||||
|
||||
SKOTIZO_CONTAINER(WidgetID.SKOTIZO_GROUP_ID, WidgetID.Skotizo.CONTAINER);
|
||||
SKOTIZO_CONTAINER(WidgetID.SKOTIZO_GROUP_ID, WidgetID.Skotizo.CONTAINER),
|
||||
|
||||
FULLSCREEN_MAP_ROOT(WidgetID.FULLSCREEN_MAP_GROUP_ID, WidgetID.FullScreenMap.ROOT);
|
||||
|
||||
private final int groupId;
|
||||
private final int childId;
|
||||
|
||||
Reference in New Issue
Block a user