summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/src/widgets/participant_list_row.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/src/widgets/participant_list_row.cpp b/app/src/widgets/participant_list_row.cpp
index 3be31b3..fd17157 100644
--- a/app/src/widgets/participant_list_row.cpp
+++ b/app/src/widgets/participant_list_row.cpp
@@ -2,6 +2,7 @@
#include <print>
+#include <glibmm/i18n.h>
#include <glibmm/ustring.h>
namespace turns::app::widgets
@@ -20,6 +21,8 @@ namespace turns::app::widgets
m_subtitle = get_widget<Gtk::Label>("subtitle");
m_title = get_widget<Gtk::EditableLabel>("title");
m_toggle_defeated = get_widget<Gtk::ToggleButton>("toggle_defeated");
+
+ m_toggle_defeated->set_tooltip_text(_("Mark as defeated"));
}
auto participant_list_row::set_subtitle(Glib::ustring const & value) -> void