@@ -61,14 +61,14 @@ private void addTabs(String defaultKey) {
6161 List <Tab > tabs = List .of (
6262 new Tab (TabKey .TRIGGERS .key , (screen ) -> {
6363 Notification notif = cast (screen ).notif ;
64- return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 ,
64+ return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 , 0 ,
6565 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
6666 FilterList .Entry .TriggerOptions .class ,
6767 (source , dest ) -> notif == Config .get ().getUserNotif ()
6868 ? notif .moveTrigger (source + 2 , dest + 2 )
6969 : notif .moveTrigger (source , dest ),
7070 () -> cast (screen ).updateTabTitle (TabKey .TRIGGERS ),
71- localized ("option" , "notif.trigger.list" , "ℹ " ),
71+ localized ("option" , "notif.trigger.list" , "\u2139 " ),
7272 localized ("option" , "notif.trigger.list.tooltip" ),
7373 null ,
7474 null ,
@@ -97,23 +97,23 @@ private void addTabs(String defaultKey) {
9797 );
9898 }),
9999 new Tab (TabKey .FORMAT .key , (screen ) ->
100- new FormatList (Minecraft .getInstance (), screen , 0 , 0 , 0 ,
100+ new FormatList (Minecraft .getInstance (), screen , 0 , 0 , 0 , 0 ,
101101 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
102102 cast (screen ).notif
103103 )),
104104 new Tab (TabKey .SOUND .key , (screen ) ->
105- new SoundList (Minecraft .getInstance (), screen , 0 , 0 , 0 ,
105+ new SoundList (Minecraft .getInstance (), screen , 0 , 0 , 0 , 0 ,
106106 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT ,
107107 cast (screen ).notif .sound
108108 )),
109109 new Tab (TabKey .INCLUSION .key , (screen ) -> {
110110 Notification notif = cast (screen ).notif ;
111- return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 ,
111+ return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 , 0 ,
112112 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
113113 FilterList .Entry .TriggerOptions .class ,
114114 notif ::moveInclusionTrigger ,
115115 () -> cast (screen ).updateTabTitle (TabKey .INCLUSION ),
116- localized ("option" , "notif.inclusion.list" , "ℹ " ),
116+ localized ("option" , "notif.inclusion.list" , "\u2139 " ),
117117 localized ("option" , "notif.inclusion.list.tooltip" ),
118118 () -> notif .inclusionEnabled ,
119119 (status ) -> notif .inclusionEnabled = status ,
@@ -130,12 +130,12 @@ private void addTabs(String defaultKey) {
130130 }),
131131 new Tab (TabKey .EXCLUSION .key , (screen ) -> {
132132 Notification notif = cast (screen ).notif ;
133- return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 ,
133+ return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 , 0 ,
134134 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
135135 FilterList .Entry .TriggerOptions .class ,
136136 notif ::moveExclusionTrigger ,
137137 () -> cast (screen ).updateTabTitle (TabKey .EXCLUSION ),
138- localized ("option" , "notif.exclusion.list" , "ℹ " ),
138+ localized ("option" , "notif.exclusion.list" , "\u2139 " ),
139139 localized ("option" , "notif.exclusion.list.tooltip" ),
140140 () -> notif .exclusionEnabled ,
141141 (status ) -> notif .exclusionEnabled = status ,
@@ -152,12 +152,12 @@ private void addTabs(String defaultKey) {
152152 }),
153153 new Tab (TabKey .RESPONSES .key , (screen ) -> {
154154 Notification notif = cast (screen ).notif ;
155- return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 ,
155+ return new FilterList <>(Minecraft .getInstance (), screen , 0 , 0 , 0 , 0 ,
156156 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
157157 FilterList .Entry .ResponseOptions .class ,
158158 notif ::moveResponseMessage ,
159159 () -> cast (screen ).updateTabTitle (TabKey .RESPONSES ),
160- localized ("option" , "notif.response.list" , "ℹ " ),
160+ localized ("option" , "notif.response.list" , "\u2139 " ),
161161 localized ("option" , "notif.response.list.tooltip" ),
162162 () -> notif .responseEnabled ,
163163 (status ) -> notif .responseEnabled = status ,
@@ -171,7 +171,7 @@ private void addTabs(String defaultKey) {
171171 );
172172 }),
173173 new Tab (TabKey .MISC .key , (screen ) ->
174- new MiscOptionList (Minecraft .getInstance (), screen , 0 , 0 , 0 ,
174+ new MiscOptionList (Minecraft .getInstance (), screen , 0 , 0 , 0 , 0 ,
175175 BASE_LIST_ENTRY_WIDTH , LIST_ENTRY_HEIGHT , LIST_ENTRY_SPACING ,
176176 cast (screen ).notif
177177 ))
0 commit comments