author | sandman <sandman> | 2002-12-03 00:59:30 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-12-03 00:59:30 (UTC) |
commit | 26557b9370b3d1f28224374f8a035ae9051a1317 (patch) (side-by-side diff) | |
tree | b45c67bd4d71910f1faf020e23a01b648d2effbf | |
parent | c3c95ff297355f7024c15134bbc1d15d340bf8fd (diff) | |
download | opie-26557b9370b3d1f28224374f8a035ae9051a1317.zip opie-26557b9370b3d1f28224374f8a035ae9051a1317.tar.gz opie-26557b9370b3d1f28224374f8a035ae9051a1317.tar.bz2 |
small fix regarding focus handling on combo-boxes
-rw-r--r-- | noncore/styles/liquid/liquid.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/styles/liquid/liquid.cpp b/noncore/styles/liquid/liquid.cpp index e6d8310..4a65952 100644 --- a/noncore/styles/liquid/liquid.cpp +++ b/noncore/styles/liquid/liquid.cpp @@ -35,12 +35,14 @@ #include <qmenubar.h> #include <qprogressbar.h> #include <qlineedit.h> +#include <qlistbox.h> #include <stdio.h> #include "htmlmasks.h" #include "embeddata.h" + typedef void (QStyle::*QDrawMenuBarItemImpl) (QPainter *, int, int, int, int, QMenuItem *, QColorGroup &, bool, bool); @@ -1408,7 +1410,8 @@ void LiquidStyle::drawComboButton(QPainter *painter, int x, int y, int w, int h, ( edit && ((QWidget *) painter-> device ( ))-> inherits ( "QComboBox" ) && - ( qApp-> focusWidget ( ) == ((QComboBox *) painter->device())->lineEdit ( )) + ( qApp-> focusWidget ( ) == ((QComboBox *) painter->device())->lineEdit ( ) || + qApp-> focusWidget ( ) == ((QComboBox *) painter->device())->listBox ( )) ) ) ) { |