GUI: added HD screen support (resizing) for player panels (preferences settings under development, part of #12455, #12451, #7563);

This commit is contained in:
Oleg Agafonov 2024-06-23 16:02:36 +04:00
parent 7d675de876
commit 72586616ae
10 changed files with 340 additions and 242 deletions

View file

@ -4,9 +4,9 @@ package mage.designations;
* @author LevelX2
*/
public enum DesignationType {
THE_MONARCH("The Monarch"),
CITYS_BLESSING("City's Blessing"),
THE_INITIATIVE("The Initiative");
THE_MONARCH("The Monarch"), // global
CITYS_BLESSING("City's Blessing"), // per player
THE_INITIATIVE("The Initiative"); // global
private final String text;

View file

@ -34,6 +34,9 @@ public class DebugUtil {
// game
public static boolean GUI_GAME_DRAW_BATTLEFIELD_BORDER = false;
public static boolean GUI_GAME_DRAW_HAND_AND_STACK_BORDER = false;
public static boolean GUI_GAME_DRAW_PLAYER_PANEL_BORDER = true;
// game dialogs
public static boolean GUI_GAME_DIALOGS_DRAW_CARDS_AREA_BORDER = false;
public static String getMethodNameWithSource(final int depth) {