diff options
Diffstat (limited to 'src/CommandDialog.cc')
-rw-r--r-- | src/CommandDialog.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CommandDialog.cc b/src/CommandDialog.cc index 3207a48..e19cd53 100644 --- a/src/CommandDialog.cc +++ b/src/CommandDialog.cc | |||
@@ -193,12 +193,12 @@ void CommandDialog::tabComplete() { | |||
193 | 193 | ||
194 | void CommandDialog::render() { | 194 | void CommandDialog::render() { |
195 | Pixmap tmp = m_pixmap; | 195 | Pixmap tmp = m_pixmap; |
196 | if (!m_screen.winFrameTheme().labelFocusTexture().usePixmap()) { | 196 | if (!m_screen.winFrameTheme().iconbarTheme().focusedTexture().usePixmap()) { |
197 | m_label.setBackgroundColor(m_screen.winFrameTheme().labelFocusTexture().color()); | 197 | m_label.setBackgroundColor(m_screen.winFrameTheme().iconbarTheme().focusedTexture().color()); |
198 | m_pixmap = 0; | 198 | m_pixmap = 0; |
199 | } else { | 199 | } else { |
200 | m_pixmap = m_screen.imageControl().renderImage(m_label.width(), m_label.height(), | 200 | m_pixmap = m_screen.imageControl().renderImage(m_label.width(), m_label.height(), |
201 | m_screen.winFrameTheme().labelFocusTexture()); | 201 | m_screen.winFrameTheme().iconbarTheme().focusedTexture()); |
202 | m_label.setBackgroundPixmap(m_pixmap); | 202 | m_label.setBackgroundPixmap(m_pixmap); |
203 | } | 203 | } |
204 | 204 | ||
@@ -213,7 +213,7 @@ void CommandDialog::init() { | |||
213 | // setup label | 213 | // setup label |
214 | // we listen to motion notify too | 214 | // we listen to motion notify too |
215 | m_label.setEventMask(m_label.eventMask() | ButtonPressMask | ButtonMotionMask); | 215 | m_label.setEventMask(m_label.eventMask() | ButtonPressMask | ButtonMotionMask); |
216 | m_label.setGC(m_screen.winFrameTheme().labelTextFocusGC()); | 216 | m_label.setGC(m_screen.winFrameTheme().iconbarTheme().focusedText().textGC()); |
217 | m_label.show(); | 217 | m_label.show(); |
218 | 218 | ||
219 | // setup text box | 219 | // setup text box |