From 7faad8764c104183d72b1d4f929a0bfc362d5635 Mon Sep 17 00:00:00 2001 From: Matthias Metelka <62722460+kleinerpirat@users.noreply.github.com> Date: Sun, 15 Jan 2023 18:01:57 +0100 Subject: [PATCH] Cleanup --- qt/aqt/profiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/aqt/profiles.py b/qt/aqt/profiles.py index 1cd049cdc..5adbee797 100644 --- a/qt/aqt/profiles.py +++ b/qt/aqt/profiles.py @@ -527,10 +527,10 @@ create table if not exists profiles gui_hooks.body_classes_need_update() def minimalist_mode(self) -> bool: - return self.meta.get("tatsumoto_mode", False) + return self.meta.get("minimalist_mode", False) def set_minimalist_mode(self, on: bool) -> None: - self.meta["tatsumoto_mode"] = on + self.meta["minimalist_mode"] = on gui_hooks.body_classes_need_update() def hide_top_bar(self) -> bool: