diff options
author | rathnor <rathnor> | 2004-01-10 01:19:13 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2004-01-10 01:19:13 (GMT) |
commit | 58a586a73ed03f0afa21acaf71fbbc0a5cdbeac8 (patch) | |
tree | 69380b0f39c3782c70b94528daac6786a676717c /src | |
parent | 5e87ca1ea430fe325d58d388af2543783e6dd640 (diff) | |
download | fluxbox-58a586a73ed03f0afa21acaf71fbbc0a5cdbeac8.zip fluxbox-58a586a73ed03f0afa21acaf71fbbc0a5cdbeac8.tar.bz2 |
fix small rendering issue on iconbar
Diffstat (limited to 'src')
-rw-r--r-- | src/IconbarTool.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/IconbarTool.cc b/src/IconbarTool.cc index b4a6c4f..ff10018 100644 --- a/src/IconbarTool.cc +++ b/src/IconbarTool.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: IconbarTool.cc,v 1.27 2004/01/09 11:59:10 fluxgen Exp $ | 23 | // $Id: IconbarTool.cc,v 1.28 2004/01/10 01:19:13 rathnor Exp $ |
24 | 24 | ||
25 | #include "IconbarTool.hh" | 25 | #include "IconbarTool.hh" |
26 | 26 | ||
@@ -45,7 +45,6 @@ | |||
45 | #include <typeinfo> | 45 | #include <typeinfo> |
46 | #include <string> | 46 | #include <string> |
47 | #include <iterator> | 47 | #include <iterator> |
48 | #include <iostream> | ||
49 | using namespace std; | 48 | using namespace std; |
50 | 49 | ||
51 | template<> | 50 | template<> |
@@ -494,11 +493,11 @@ void IconbarTool::update(FbTk::Subject *subj) { | |||
494 | } | 493 | } |
495 | 494 | ||
496 | // unlock container and update graphics | 495 | // unlock container and update graphics |
497 | renderTheme(); | ||
498 | m_icon_container.setUpdateLock(false); | 496 | m_icon_container.setUpdateLock(false); |
499 | m_icon_container.update(); | 497 | m_icon_container.update(); |
500 | m_icon_container.showSubwindows(); | 498 | m_icon_container.showSubwindows(); |
501 | 499 | ||
500 | renderTheme(); | ||
502 | } | 501 | } |
503 | 502 | ||
504 | IconButton *IconbarTool::findButton(FluxboxWindow &win) { | 503 | IconButton *IconbarTool::findButton(FluxboxWindow &win) { |
@@ -675,7 +674,6 @@ void IconbarTool::addWindow(FluxboxWindow &win) { | |||
675 | return; | 674 | return; |
676 | 675 | ||
677 | IconButton *button = new IconButton(m_icon_container, m_theme.focusedText().font(), win); | 676 | IconButton *button = new IconButton(m_icon_container, m_theme.focusedText().font(), win); |
678 | button->setPixmap(*m_rc_use_pixmap); | ||
679 | m_icon_container.insertItem(button); | 677 | m_icon_container.insertItem(button); |
680 | m_icon_list.push_back(button); | 678 | m_icon_list.push_back(button); |
681 | 679 | ||