From e0a388dac192a2001773d3e95cd7c82ee6beda4f Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 15 May 2020 13:38:41 +0200 Subject: [PATCH] gui/src/SearchWindow.cpp: show tooltip for dictionary widgets. --- gui/src/SearchWindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gui/src/SearchWindow.cpp b/gui/src/SearchWindow.cpp index 42b54ff..2128fed 100644 --- a/gui/src/SearchWindow.cpp +++ b/gui/src/SearchWindow.cpp @@ -31,6 +31,7 @@ #include #include #include +#include "gui_text.h" #include "config.hpp" #include "helpers.hpp" #include "SearchWindow.hpp" @@ -61,6 +62,9 @@ m_btn_clear ("Clear") // First row. m_dict_lang.addItems(get_files(CONFIG_DICT_FULL_PATH)); + m_dict_lang.setToolTip(EOSIOKEYGEN_GUI_TEXT_DICT_LANG_TOOLTIP); + m_dict_file.setToolTip(EOSIOKEYGEN_GUI_TEXT_DICT_FILE_TOOLTIP); + m_layout.addWidget(&m_dict_lang, 0, 0); m_layout.addWidget(&m_dict_file, 0, 1);