Removed 'text.*' prefix
This commit is contained in:
@@ -195,12 +195,12 @@ public class MobileInput extends InputHandler implements GestureListener{
|
||||
|
||||
void showGuide(String type){
|
||||
if(!guides.contains(type) && !Core.settings.getBool(type, false)){
|
||||
FloatingDialog dialog = new FloatingDialog("$text." + type + ".title");
|
||||
FloatingDialog dialog = new FloatingDialog("$" + type + ".title");
|
||||
dialog.addCloseButton();
|
||||
dialog.content().left();
|
||||
dialog.content().add("$text." + type).growX().wrap();
|
||||
dialog.content().add("$" + type).growX().wrap();
|
||||
dialog.content().row();
|
||||
dialog.content().addCheck("$text.showagain", false, checked -> {
|
||||
dialog.content().addCheck("$showagain", false, checked -> {
|
||||
Core.settings.put(type, checked);
|
||||
Core.settings.save();
|
||||
}).growX().left().get().left();
|
||||
|
||||
Reference in New Issue
Block a user