Changes between Version 2 and Version 3 of Chimera2/qtbugs


Ignore:
Timestamp:
Aug 16, 2013, 11:42:51 AM (13 years ago)
Author:
goddard
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Chimera2/qtbugs

    v2 v3  
    22
    33 - Toolbar tooltips don't go away promptly [https://bugreports.qt-project.org/browse/QTBUG-26669 26669]. Mac.
    4  - Mouse tracking broken [https://bugreports.qt-project.org/browse/QTBUG-29751 29751].  Don't get mouse motion events unless a mouse button is pressed.  Wanted this to detect mouse pauses for showing atom specs. Mac.
     4 
     5- Mouse tracking broken [https://bugreports.qt-project.org/browse/QTBUG-29751 29751].  Don't get mouse motion events unless a mouse button is pressed.  Wanted this to detect mouse pauses for showing atom specs. Mac.
     6
     7 - Can't give command-line focus [https://bugreports.qt-project.org/browse/QTBUG-32914 32914].
     8  Can't give QLineEdit the focus. QLineEdit for command line does not get key strokes after its setFocus() method is called.  Tests show it
     9  reports hasFocus() -> True, isActiveWindow() -> True, and isEnabled() -> True but still the QMainWindow gets
     10  the key events.  The QLineEdit is wrapped in a QDockWidget.  Several reports on the web of this problem
     11  with no solution described.  Clicking into the QLineEdit with the mouse makes it accept key events in most
     12  but not all cases.  Clicking in does not make it accept key events if it already has the focus from the
     13  setFocus() call.  When it doesn't work it still has the blue highlighting indicating it has focus and has
     14  a blinking insertion cursor.  It simply doesn't take key strokes.  Seems like it really does have focus
     15  but simply declines to process the key events.
     16
     17- QLineEdit text color can not be set easily.  Want red color for some status line warnings.  Can change
     18 palette text color to change all text to new color.  For coloring some text need to switch to a QTextBrowser.
     19 [http://stackoverflow.com/questions/14417333/how-can-i-change-color-of-part-of-the-text-in-qlineedit QLineEdit text color].
     20
     21- QApplication.setWindowIcon() or QWidget.setWindowIcon() does not change Mac Dock Icon, Qt 5.0.2.
     22
     23- Trackpad event handling disabled on Mac due to scrolling lag issues [https://bugreports.qt-project.org/browse/QTBUG-28126 28126],
     24  [https://codereview.qt-project.org/#change,37451 37451].
     25
     26- Initial qt window size will be at most 2/3 screen height [https://bugreports.qt-project.org/browse/QTBUG-486 486] (closed although not fixed).
     27  Main window doesn't respect the sizeHint and prevents me from making an initial 1024x1024 graphics area.
     28
     29- QTextBrowser opens a link to an image <a href="image.jpg">x</a> showing just binary text instead
     30  of the image.  Seems it only works to link to another html file.  Wanted to link thumbnail image to
     31  full size image in reply log.
     32
     33- Mac retina display support may not be working [https://bugreports.qt-project.org/browse/QTBUG-26795 26795].
     34  Did not test this.