Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions src/gui/efgtooltip.cc
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,15 @@ void OutcomeEditorPopup::BuildControls()

outerSizer->Add(new wxStaticLine(m_contentPanel), 0, wxEXPAND);

auto *hintText = new wxStaticText(m_contentPanel, wxID_STATIC,
_("Escape cancels and closes this window. Enter accepts."));
hintText->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT));
wxFont hintFont = hintText->GetFont();
hintFont.SetPointSize(hintFont.GetPointSize() - 1);
hintText->SetFont(hintFont);
hintText->Wrap(FromDIP(260));
outerSizer->Add(hintText, 0, wxALL, FromDIP(10));
Comment thread
Copilot marked this conversation as resolved.

m_errorText = new wxStaticText(m_contentPanel, wxID_STATIC, wxEmptyString);
m_errorText->SetForegroundColour(*wxRED);
m_errorText->Wrap(FromDIP(260));
Expand Down Expand Up @@ -822,8 +831,10 @@ void AppendMovePopup::BuildControls()

outerSizer->Add(new wxStaticLine(m_contentPanel), 0, wxEXPAND);

m_hintText =
new wxStaticText(m_contentPanel, wxID_ANY, _("Tab past the last action to add another"));
m_hintText = new wxStaticText(
m_contentPanel, wxID_ANY,
_("Tab past the last action to add another.\nEscape cancels and closes this window. Enter "
"accepts."));
m_hintText->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT));
wxFont hintFont = m_hintText->GetFont();
hintFont.SetPointSize(hintFont.GetPointSize() - 1);
Expand Down
Loading