> On Feb. 19, 2013, 2:29 a.m., David Edmundson wrote: > > chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml, line 27 > > <http://git.reviewboard.kde.org/r/109036/diff/1/?file=114393#file114393line27> > > > > Change this to FocusScope > > and then you can delete the onFocusChanged line. > > > > and I think that's more 'correct' in terms QML. > > > > http://doc.qt.digia.com/4.7-snapshot/qdeclarativefocus.html#qmlfocus > > > > (that's completely untested BTW... if you want I'll test it tomorrow) > > Aleix Pol Gonzalez wrote: > I tried with this: http://paste.opensuse.org/17952675 > > And this wouldn't work, I don't know how it's supposed to be used, I > guess... and documentation sucks
That patch won't work; you now have two (or more) FocusScopes with focus:true at once, which isn't any difference from having the original two input boxes requesting focus at once. QML just randomly picks something. As I understand it all a focus scope does is say "ignore the children requesting focus until I get focus then work it out" (and you're right, the documentation does suck). So it needs combining with part of this patch here. This seems to work: http://paste.kde.org/676418 Opened two chats, input box always got focus on opening. - David ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/109036/#review27701 ----------------------------------------------------------- On Feb. 19, 2013, 2:15 a.m., Aleix Pol Gonzalez wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > http://git.reviewboard.kde.org/r/109036/ > ----------------------------------------------------------- > > (Updated Feb. 19, 2013, 2:15 a.m.) > > > Review request for Telepathy. > > > Description > ------- > > When the popup is displayed, automatically set the focus to the text field. > > > Diffs > ----- > > chat/org.kde.ktp-chat/contents/ui/ConversationDelegate.qml e17e925 > chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml 2d13dba > > Diff: http://git.reviewboard.kde.org/r/109036/diff/ > > > Testing > ------- > > Works wonderfully awesome on my panel's chat plasmoid :) > (and plasmoidviewer) > > > Thanks, > > Aleix Pol Gonzalez > >
_______________________________________________ KDE-Telepathy mailing list [email protected] https://mail.kde.org/mailman/listinfo/kde-telepathy
