disable new feature for connection setup shown during an active connection for now since it does not work reliably...
This commit is contained in:
parent
c942a2757c
commit
424532a162
2 changed files with 13 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
||||||
3.3.2
|
3.3.2
|
||||||
|
|
||||||
- the connection setup dialog can now be opened during a connection
|
|
||||||
|
TODO: This feature is disabled for now since it does not work as expected (we
|
||||||
|
get audio drop outs if the list is open during a connection)
|
||||||
|
DISABLED: - the connection setup dialog can now be opened during a connection
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -324,8 +324,17 @@ CClientDlg::CClientDlg ( CClient* pNCliP,
|
||||||
// View menu --------------------------------------------------------------
|
// View menu --------------------------------------------------------------
|
||||||
pViewMenu = new QMenu ( "&View", this );
|
pViewMenu = new QMenu ( "&View", this );
|
||||||
|
|
||||||
|
|
||||||
|
// TODO This View menu item is disabled for now. The reason for that is that if
|
||||||
|
// if the connection setup dialog is opened during an active connection, we will
|
||||||
|
// get audio drop outs everytime the ping times in the list are updated which is
|
||||||
|
// not acceptable.
|
||||||
|
// Fix the issue with the thread priorities and enable the menu item again...
|
||||||
|
/*
|
||||||
pViewMenu->addAction ( tr ( "&Connection Setup..." ), this,
|
pViewMenu->addAction ( tr ( "&Connection Setup..." ), this,
|
||||||
SLOT ( OnOpenConnectionSetupDialog() ) );
|
SLOT ( OnOpenConnectionSetupDialog() ) );
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
pViewMenu->addAction ( tr ( "C&hat..." ), this,
|
pViewMenu->addAction ( tr ( "C&hat..." ), this,
|
||||||
SLOT ( OnOpenChatDialog() ) );
|
SLOT ( OnOpenChatDialog() ) );
|
||||||
|
|
Loading…
Reference in a new issue