<div dir="ltr">I don't see how this can be wrong, but let's see, on the file src/plugins/SSHManager/sshmanagerpluginwidget.cpp I connect the treeview to the connectRequested<br><br>connect(ui->treeView, &QTreeView::doubleClicked, this, &SSHManagerTreeWidget::connectRequested);<br><br>The only way that this can go wrong is if Qt is not delivering correctly the doubleClicked.<br><br>so we can try to rewrite this as:<br><br>connect(ui->treeView, &QTreeView::doubleClicked, this, [this] { qDebug() << "Bleh"; connectRequested()});<br><br>Because I'm connecting directly the doubleClicked to the connectRequested, I don't see a way that this could fail.<div><br><br>On Tue, Jan 18, 2022 at 10:45 PM Kurt Hindenburg <<a href="mailto:bugzilla_noreply@kde.org">bugzilla_noreply@kde.org</a>> wrote:<br>><br>> <a href="https://bugs.kde.org/show_bug.cgi?id=448744">https://bugs.kde.org/show_bug.cgi?id=448744</a><br>><br>> --- Comment #2 from Kurt Hindenburg <<a href="mailto:kurt.hindenburg@gmail.com">kurt.hindenburg@gmail.com</a>> ---<br>> (In reply to tcanabrava from comment #1)<br>> > Created attachment 145634 [details]<br>> > attachment-25469-0.html<br>> ><br>> > I don’t have a Mac to test, Kurt :(<br>> > The signal is connected.<br>> ><br>> > Le mar. 18 janv. 2022 à 22:38, Kurt Hindenburg <<a href="mailto:bugzilla_noreply@kde.org">bugzilla_noreply@kde.org</a>> a<br>> > écrit :<br>> ><br>> > > <a href="https://bugs.kde.org/show_bug.cgi?id=448744">https://bugs.kde.org/show_bug.cgi?id=448744</a><br>> > ><br>> > >             Bug ID: 448744<br>> > >            Summary: SSHManager plugin often doesn't handle double-clicks<br>> > >                     on server names on macOS<br>> > >            Product: konsole<br>> > >            Version: master<br>> > >           Platform: Other<br>> > >                 OS: macOS<br>> > >             Status: REPORTED<br>> > >           Severity: normal<br>> > >           Priority: NOR<br>> > >          Component: general<br>> > >           Assignee: <a href="mailto:konsole-devel@kde.org">konsole-devel@kde.org</a><br>> > >           Reporter: <a href="mailto:kurt.hindenburg@gmail.com">kurt.hindenburg@gmail.com</a><br>> > >   Target Milestone: ---<br>> > ><br>> > > When double-clicking on server name in sshmanager plugin, it rarely works<br>> > > under<br>> > > macOS.  I can't figure out how to get it to work constantly.  It seems<br>> > > like the<br>> > > connectRequested signal is not connected.<br>> > ><br>> > > I haven't had any issues on any other OS - freebsd works as expected.<br>><br>><br>> I put print statements in connectRequested() and they are not printed.  Do you<br>> have any suggestions on what I can look at?<br>><br>> --<br>> You are receiving this mail because:<br>> You are the assignee for the bug.</div></div>