-rw-r--r-- | core/launcher/inputmethods.cpp | 2 | ||||
-rw-r--r-- | core/launcher/mrulist.cpp | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/core/launcher/inputmethods.cpp b/core/launcher/inputmethods.cpp index da98e07..ac72b02 100644 --- a/core/launcher/inputmethods.cpp +++ b/core/launcher/inputmethods.cpp | |||
@@ -71,12 +71,14 @@ static const int inputWidgetStyle = QWidget::WStyle_Customize | | |||
71 | 71 | ||
72 | InputMethods::InputMethods( QWidget *parent ) : | 72 | InputMethods::InputMethods( QWidget *parent ) : |
73 | QWidget( parent, "InputMethods", WStyle_Tool | WStyle_Customize ) | 73 | QWidget( parent, "InputMethods", WStyle_Tool | WStyle_Customize ) |
74 | { | 74 | { |
75 | method = NULL; | 75 | method = NULL; |
76 | 76 | ||
77 | setBackgroundMode ( PaletteBackground ); | ||
78 | |||
77 | QHBoxLayout *hbox = new QHBoxLayout( this ); | 79 | QHBoxLayout *hbox = new QHBoxLayout( this ); |
78 | 80 | ||
79 | kbdButton = new QToolButton( this ); | 81 | kbdButton = new QToolButton( this ); |
80 | kbdButton->setFocusPolicy(NoFocus); | 82 | kbdButton->setFocusPolicy(NoFocus); |
81 | kbdButton->setToggleButton( TRUE ); | 83 | kbdButton->setToggleButton( TRUE ); |
82 | kbdButton->setFixedHeight( 17 ); | 84 | kbdButton->setFixedHeight( 17 ); |
diff --git a/core/launcher/mrulist.cpp b/core/launcher/mrulist.cpp index 5590d38..0530fd6 100644 --- a/core/launcher/mrulist.cpp +++ b/core/launcher/mrulist.cpp | |||
@@ -37,13 +37,13 @@ QList<MRUList> *MRUList::MRUListWidgets = NULL; | |||
37 | QList<AppLnk>*MRUList::task = NULL; | 37 | QList<AppLnk>*MRUList::task = NULL; |
38 | 38 | ||
39 | 39 | ||
40 | MRUList::MRUList( QWidget *parent ) | 40 | MRUList::MRUList( QWidget *parent ) |
41 | : QFrame( parent ), selected(-1), oldsel(-1) | 41 | : QFrame( parent ), selected(-1), oldsel(-1) |
42 | { | 42 | { |
43 | setBackgroundMode( PaletteButton ); | 43 | setBackgroundMode( PaletteBackground ); |
44 | if (!MRUListWidgets) | 44 | if (!MRUListWidgets) |
45 | MRUListWidgets = new QList<MRUList>; | 45 | MRUListWidgets = new QList<MRUList>; |
46 | if (!task) | 46 | if (!task) |
47 | task = new QList<AppLnk>; | 47 | task = new QList<AppLnk>; |
48 | MRUListWidgets->append( this ); | 48 | MRUListWidgets->append( this ); |
49 | } | 49 | } |
@@ -200,13 +200,14 @@ void MRUList::paintEvent( QPaintEvent * ) | |||
200 | QPainter p( this ); | 200 | QPainter p( this ); |
201 | AppLnk *t; | 201 | AppLnk *t; |
202 | int x = 0; | 202 | int x = 0; |
203 | int y = (height() - 14) / 2; | 203 | int y = (height() - 14) / 2; |
204 | int i = 0; | 204 | int i = 0; |
205 | 205 | ||
206 | p.fillRect( 0, 0, width(), height(), colorGroup().background() ); | 206 | // p.fillRect( 0, 0, width(), height(), colorGroup().background() ); |
207 | erase ( ); | ||
207 | 208 | ||
208 | if ( task ) { | 209 | if ( task ) { |
209 | QListIterator<AppLnk> it( *task ); | 210 | QListIterator<AppLnk> it( *task ); |
210 | for ( ; it.current(); i++, ++it ) { | 211 | for ( ; it.current(); i++, ++it ) { |
211 | if ( x + 15 <= width() ) { | 212 | if ( x + 15 <= width() ) { |
212 | t = it.current(); | 213 | t = it.current(); |