From a8156ed1b962df23736a8e315b5033036650b941 Mon Sep 17 00:00:00 2001 From: in1tiate <32779090+in1tiate@users.noreply.github.com> Date: Sun, 9 Feb 2025 09:53:36 -0600 Subject: Fix shownames toggle not being respected in several places, clean up implementation (#1080) * Move showname switch to settings and fix it * let the append function handle shownames --- src/options.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/options.cpp') diff --git a/src/options.cpp b/src/options.cpp index 2e1fbe9f..caa559c8 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -56,10 +56,6 @@ Options::Options() /*! Migrate old configuration keys/values to a relevant format. */ void Options::migrate() { - if (config.contains("show_custom_shownames")) - { - config.remove("show_custom_shownames"); - } if (QFile::exists(get_base_path() + "callwords.ini")) { migrateCallwords(); -- cgit