From 889d257962b5f7de0a5c88a5eb947e68e4d259d4 Mon Sep 17 00:00:00 2001 From: Ren Tatsumoto Date: Fri, 22 Nov 2024 05:35:32 +0300 Subject: [PATCH] add tooltip --- gui.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gui.py b/gui.py index c095837..afab2c8 100644 --- a/gui.py +++ b/gui.py @@ -271,6 +271,11 @@ def add_tooltips(self) -> None: self._toggleables["remove_buttons"].setToolTip( "Remove answer buttons.\nOnly the corresponding intervals will be visible." ) + self._toggleables["hide_button_times"].setToolTip( + "Remove text shown above each answer button\n" + "that tells you the future interval of the card\n" + "if you press the button." + ) self._toggleables["prevent_clicks"].setToolTip( "Make answer buttons disabled.\n" "Disabled buttons are visible but unusable and un-clickable." )