diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/FbTk/XmbFontImp.cc | 3 | ||||
-rw-r--r-- | src/FbWinFrame.cc | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/FbTk/XmbFontImp.cc b/src/FbTk/XmbFontImp.cc index f33942a..87eed8f 100644 --- a/src/FbTk/XmbFontImp.cc +++ b/src/FbTk/XmbFontImp.cc | |||
@@ -209,7 +209,6 @@ void XmbFontImp::drawText(const FbDrawable &d, int screen, GC main_gc, const cha | |||
209 | } | 209 | } |
210 | 210 | ||
211 | Display *dpy = App::instance()->display(); | 211 | Display *dpy = App::instance()->display(); |
212 | Window rootwin = DefaultRootWindow(dpy); | ||
213 | 212 | ||
214 | int xpos = x, ypos = y; | 213 | int xpos = x, ypos = y; |
215 | unsigned int w = d.width(); | 214 | unsigned int w = d.width(); |
@@ -219,7 +218,7 @@ void XmbFontImp::drawText(const FbDrawable &d, int screen, GC main_gc, const cha | |||
219 | untranslateCoords(orient, xpos, ypos, w, h); | 218 | untranslateCoords(orient, xpos, ypos, w, h); |
220 | 219 | ||
221 | // not straight forward, we actually draw it elsewhere, then rotate it | 220 | // not straight forward, we actually draw it elsewhere, then rotate it |
222 | FbTk::FbPixmap canvas(rootwin, w, h, 1); | 221 | FbTk::FbPixmap canvas(d.drawable(), w, h, 1); |
223 | 222 | ||
224 | // create graphic context for our canvas | 223 | // create graphic context for our canvas |
225 | FbTk::GContext font_gc(canvas); | 224 | FbTk::GContext font_gc(canvas); |
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc index 18bae9a..bb2018b 100644 --- a/src/FbWinFrame.cc +++ b/src/FbWinFrame.cc | |||
@@ -412,9 +412,8 @@ void FbWinFrame::alignTabs() { | |||
412 | if (m_visible && m_use_tabs) { | 412 | if (m_visible && m_use_tabs) { |
413 | applyTabContainer(); | 413 | applyTabContainer(); |
414 | m_tab_container.clear(); | 414 | m_tab_container.clear(); |
415 | } | ||
416 | if (m_use_tabs) | ||
417 | m_tab_container.show(); | 415 | m_tab_container.show(); |
416 | } | ||
418 | } | 417 | } |
419 | 418 | ||
420 | if (m_tab_container.parent()->window() != m_screen.rootWindow().window()) { | 419 | if (m_tab_container.parent()->window() != m_screen.rootWindow().window()) { |