all repos — tint2 @ efe9aadb39507d7d3b76d864051502f27f312c4e

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

Prevent race at startup in detecting screen resolution changes
o9000 o9000
commit

efe9aadb39507d7d3b76d864051502f27f312c4e

parent

c0e1709d57ea74db55afbec0fbb0b72e19377bac

1 files changed, 3 insertions(+), 3 deletions(-)

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

@@ -239,6 +239,9 @@ setlocale (LC_ALL, "");

// config file use '.' as decimal separator setlocale(LC_NUMERIC, "POSIX"); + /* Catch events */ + XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask); + // get monitor and desktop config get_monitors(); get_desktops();

@@ -276,9 +279,6 @@

imlib_context_set_display (server.dsp); imlib_context_set_visual (server.visual); imlib_context_set_colormap (server.colormap); - - /* Catch events */ - XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask); // load default icon gchar *path;