Skip to content

Commit

Permalink
Console window: fix server selection from combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlaltca committed Oct 18, 2023
1 parent afbf70e commit 4a51c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kvirc/ui/KviConsoleWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ KviConsoleWindow::KviConsoleWindow(int iFlags) : KviWindow(KviWindow::Console, _
m_pButtonBox->setObjectName(QLatin1String("kvi_window_button_box"));

KviTalToolTip::add(m_pAddressEdit, __tr2qs("Current IRC URI"));
connect(m_pAddressEdit, SIGNAL(activated(const QString &)), this, SLOT(ircUriChanged(const QString &)));
connect(m_pAddressEdit, SIGNAL(textActivated(const QString &)), this, SLOT(ircUriChanged(const QString &)));
connect(m_pAddressEdit, SIGNAL(returnPressed(const QString &)), this, SLOT(ircUriChanged(const QString &)));
connect(g_pApp, SIGNAL(recentUrlsChanged()), this, SLOT(recentUrlsChanged()));

Expand Down

0 comments on commit 4a51c0e

Please sign in to comment.