@@ -58,13 +58,13 @@ private void addTabs(String defaultKey) {
5858 List <Tab > tabs = List .of (
5959 new Tab (TabKey .TRIGGERS .key , (screen ) -> {
6060 Notification notif = cast (screen ).notif ;
61- return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 ,
61+ return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 , 0 ,
6262 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
6363 FilterList .Entry .TriggerOptions .class ,
6464 (source , dest ) -> notif == Config .get ().getUserNotif ()
6565 ? notif .moveTrigger (source + 2 , dest + 2 )
6666 : notif .moveTrigger (source , dest ),
67- localized ("option" , "notif.trigger.list" , "ℹ " ),
67+ localized ("option" , "notif.trigger.list" , "\u2139 " ),
6868 localized ("option" , "notif.trigger.list.tooltip" ),
6969 null ,
7070 null ,
@@ -82,7 +82,7 @@ private void addTabs(String defaultKey) {
8282 x , width , height , list , trigger , notif .textStyle , index ,
8383 (i ) -> notif .triggers .remove ((int ) i ),
8484 new TextField .Validator .UniqueTrigger (
85- () -> Config .get ().getNotifs (),
85+ () -> Config .get ().getNotifs (),
8686 (n ) -> n .triggers , notif , trigger ), true );
8787 }
8888 },
@@ -94,22 +94,22 @@ private void addTabs(String defaultKey) {
9494 );
9595 }),
9696 new Tab (TabKey .FORMAT .key , (screen ) ->
97- new FormatList (Minecraft .getInstance (), 0 , 0 , 0 ,
97+ new FormatList (Minecraft .getInstance (), 0 , 0 , 0 , 0 ,
9898 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
9999 cast (screen ).notif
100100 )),
101101 new Tab (TabKey .SOUND .key , (screen ) ->
102- new SoundList (Minecraft .getInstance (), 0 , 0 , 0 ,
102+ new SoundList (Minecraft .getInstance (), 0 , 0 , 0 , 0 ,
103103 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT ,
104104 cast (screen ).notif .sound
105105 )),
106106 new Tab (TabKey .INCLUSION .key , (screen ) -> {
107107 Notification notif = cast (screen ).notif ;
108- return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 ,
108+ return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 , 0 ,
109109 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
110110 FilterList .Entry .TriggerOptions .class ,
111111 notif ::moveInclusionTrigger ,
112- localized ("option" , "notif.inclusion.list" , "ℹ " ),
112+ localized ("option" , "notif.inclusion.list" , "\u2139 " ),
113113 localized ("option" , "notif.inclusion.list.tooltip" ),
114114 () -> notif .inclusionEnabled ,
115115 (status ) -> notif .inclusionEnabled = status ,
@@ -128,11 +128,11 @@ private void addTabs(String defaultKey) {
128128 }),
129129 new Tab (TabKey .EXCLUSION .key , (screen ) -> {
130130 Notification notif = cast (screen ).notif ;
131- return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 ,
131+ return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 , 0 ,
132132 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
133133 FilterList .Entry .TriggerOptions .class ,
134134 notif ::moveExclusionTrigger ,
135- localized ("option" , "notif.exclusion.list" , "ℹ " ),
135+ localized ("option" , "notif.exclusion.list" , "\u2139 " ),
136136 localized ("option" , "notif.exclusion.list.tooltip" ),
137137 () -> notif .exclusionEnabled ,
138138 (status ) -> notif .exclusionEnabled = status ,
@@ -151,11 +151,11 @@ private void addTabs(String defaultKey) {
151151 }),
152152 new Tab (TabKey .RESPONSES .key , (screen ) -> {
153153 Notification notif = cast (screen ).notif ;
154- return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 ,
154+ return new FilterList <>(Minecraft .getInstance (), 0 , 0 , 0 , 0 ,
155155 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
156156 FilterList .Entry .ResponseOptions .class ,
157157 notif ::moveResponseMessage ,
158- localized ("option" , "notif.response.list" , "ℹ " ),
158+ localized ("option" , "notif.response.list" , "\u2139 " ),
159159 localized ("option" , "notif.response.list.tooltip" ),
160160 () -> notif .responseEnabled ,
161161 (status ) -> notif .responseEnabled = status ,
@@ -169,7 +169,7 @@ private void addTabs(String defaultKey) {
169169 );
170170 }),
171171 new Tab (TabKey .MISC .key , (screen ) ->
172- new MiscOptionList (Minecraft .getInstance (), 0 , 0 , 0 ,
172+ new MiscOptionList (Minecraft .getInstance (), 0 , 0 , 0 , 0 ,
173173 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
174174 cast (screen ).notif
175175 ))
0 commit comments