all repos — tint2 @ 8ce26f30f5b38bbe7c45d7765c549479510606a2

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

fixed black windows drawing in fake transparency (flush before drawing window)

git-svn-id: http://tint2.googlecode.com/svn/trunk@348 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
thilor77 thilor77@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

8ce26f30f5b38bbe7c45d7765c549479510606a2

parent

3aa476a2486e60754f70e8a5d33b55898fdf7547

2 files changed, 1 insertions(+), 5 deletions(-)

jump to
M src/tint.csrc/tint.c

@@ -758,11 +758,6 @@ case Expose:

event_expose(&e); break; - case MapNotify: - if (e.xany.window == g_tooltip.window) - tooltip_update(); - break; - case PropertyNotify: event_property_notify(&e); break;
M src/tooltip/tooltip.csrc/tooltip/tooltip.c

@@ -114,6 +114,7 @@ if (!g_tooltip.mapped && area->_get_tooltip_text) {

tooltip_copy_text(area); g_tooltip.mapped = True; XMapWindow(server.dsp, g_tooltip.window); + tooltip_update(); XFlush(server.dsp); } }