Skip to content

Commit

Permalink
chore: make default overlay panel inset 4/4 instead of 2/2
Browse files Browse the repository at this point in the history
A bit more inset just looks better
  • Loading branch information
desht committed Aug 20, 2024
1 parent 6169f4e commit 52c9d57
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public interface FTBQuestsClientConfig {
SNBTConfig UI = CONFIG.addGroup("ui", 0);
BooleanValue OLD_SCROLL_WHEEL = UI.addBoolean("old_scroll_wheel", false);
EnumValue<PanelPositioning> PINNED_QUESTS_POS = UI.addEnum("pinned_quests_pos", PanelPositioning.NAME_MAP, PanelPositioning.RIGHT);
IntValue PINNED_QUESTS_INSET_X = UI.addInt("pinned_quests_inset_x", 2);
IntValue PINNED_QUESTS_INSET_Y = UI.addInt("pinned_quests_inset_y", 2);
IntValue PINNED_QUESTS_INSET_X = UI.addInt("pinned_quests_inset_x", 4);
IntValue PINNED_QUESTS_INSET_Y = UI.addInt("pinned_quests_inset_y", 4);

// TODO migrate chapter-pinned and pinned-quests data out of per-player team data into here

Expand Down

0 comments on commit 52c9d57

Please sign in to comment.