On Mon, 2 Dec 2013 10:36:50 -0600
Terry Brown <[email protected]> wrote:
> So I guess we could add a tooltip to the pane dividers to tell the user
import sys
from PyQt4 import QtGui, QtCore
app = QtGui.QApplication(sys.argv)
w = QtGui.QSplitter()
w.addWidget(QtGui.QPushButton('t'))
w.addWidget(QtGui.QPushButton('t'))
s = [i for i in w.children() if isinstance(i, QtGui.QSplitterHandle)][0]
s.setToolTip('test')
w.show()
app.exec_()
another case where Qt doesn't support tool tips directly.
Cheers -Terry
--
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/groups/opt_out.