Browse Source

Enable chat clickable weblinks by default (#12115)

Co-authored-by: rubenwardy <rw@rubenwardy.com>
Froggo 2 years ago
parent
commit
45d318a773
3 changed files with 5 additions and 3 deletions
  1. 1 1
      builtin/settingtypes.txt
  2. 1 1
      minetest.conf.example
  3. 3 1
      src/defaultsettings.cpp

+ 1 - 1
builtin/settingtypes.txt

@@ -988,7 +988,7 @@ mute_sound (Mute sound) bool false
 [Client]
 
 #    Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console output.
-clickable_chat_weblinks (Chat weblinks) bool false
+clickable_chat_weblinks (Chat weblinks) bool true
 
 #    Optional override for chat weblink color.
 chat_weblink_color (Weblink color) string

+ 1 - 1
minetest.conf.example

@@ -1176,7 +1176,7 @@
 
 #    Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console output.
 #    type: bool
-# clickable_chat_weblinks = false
+# clickable_chat_weblinks = true
 
 #    Optional override for chat weblink color.
 #    type: string

+ 3 - 1
src/defaultsettings.cpp

@@ -65,7 +65,6 @@ void set_default_settings()
 	settings->setDefault("max_out_chat_queue_size", "20");
 	settings->setDefault("pause_on_lost_focus", "false");
 	settings->setDefault("enable_register_confirmation", "true");
-	settings->setDefault("clickable_chat_weblinks", "false");
 	settings->setDefault("chat_weblink_color", "#8888FF");
 
 	// Keymap
@@ -465,6 +464,9 @@ void set_default_settings()
 	settings->setDefault("touchscreen_threshold","20");
 	settings->setDefault("fixed_virtual_joystick", "false");
 	settings->setDefault("virtual_joystick_triggers_aux1", "false");
+	settings->setDefault("clickable_chat_weblinks", "false");
+#else
+	settings->setDefault("clickable_chat_weblinks", "true");
 #endif
 	// Altered settings for Android
 #ifdef __ANDROID__