Skip to content

Commit

Permalink
MyFrameMain: stop showing busy cursor on entering credentials
Browse files Browse the repository at this point in the history
re #222
  • Loading branch information
bk138 committed Feb 27, 2024
1 parent 9239818 commit 7d3dbbd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/gui/MyFrameMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,9 @@ void MyFrameMain::onVNCConnGetCredentialsNotify(wxCommandEvent &event)
// get sender
VNCConn *conn = static_cast<VNCConn*>(event.GetEventObject());

// stop showing connection setup busy cursor when entering creds
wxEndBusyCursor();

if(!event.GetInt()) {
// without user prompt, get only password
wxString pass = wxGetPasswordFromUser(wxString::Format(_("Please enter password for user '%s'"), conn->getUserName()),
Expand Down

0 comments on commit 7d3dbbd

Please sign in to comment.