# ID 2
rounded = 1
border_width = 0
-background_color = #F6B655 86
+background_color = #F6B655 85
border_color = #CCCCCC 40
# Panel
autohide_show_timeout = 0.0
autohide_hide_timeout = 0.0
autohide_height = 0
-strut_policy = none
+strut_policy = follow_size
# Taskbar
taskbar_mode = single_desktop
# Clock
time1_format = %H:%M
time1_font = sans 13
-clock_font_color = #FFFFFF 86
+clock_font_color = #FFFFFF 85
clock_padding = 2 0
clock_background_id = 0
battery_padding = 2 0
battery_background_id = 0
-# End of config
\ No newline at end of file
+# End of config
rounded = 3
border_width = 1
background_color = #000000 40
-border_color = #D1D1D1 31
+border_color = #D1D1D1 30
# ID 2
rounded = 3
border_width = 1
-background_color = #000000 52
+background_color = #000000 51
border_color = #D1D1D1 40
# Panel
autohide_show_timeout = 0.0
autohide_hide_timeout = 0.0
autohide_height = 0
-strut_policy = none
+strut_policy = follow_size
# Taskbar
taskbar_mode = single_desktop
# Fonts
task_font = sans bold 7.5
task_font_color = #FFFFFF 60
-task_active_font_color = #FFFFFF 87
-task_urgent_font_color = #FFFFFF 87
+task_active_font_color = #FFFFFF 86
+task_urgent_font_color = #FFFFFF 86
task_iconified_font_color = #FFFFFF 60
font_shadow = 0
battery_padding = 1 0
battery_background_id = 0
-# End of config
\ No newline at end of file
+# End of config
}
task_drag = click_task(panel, e->xbutton.x, e->xbutton.y);
- XLowerWindow (server.dsp, panel->main_win);
+ if (panel_layer == BOTTOM_LAYER)
+ XLowerWindow (server.dsp, panel->main_win);
}
void event_button_motion_notify (XEvent *e)
if (wm_menu && !tint2_handles_click(panel, &e->xbutton)) {
forward_click(e);
- XLowerWindow (server.dsp, panel->main_win);
+ if (panel_layer == BOTTOM_LAYER)
+ XLowerWindow (server.dsp, panel->main_win);
task_drag = 0;
return;
}
if ( click_clock(panel, e->xbutton.x, e->xbutton.y)) {
clock_action(e->xbutton.button);
- XLowerWindow (server.dsp, panel->main_win);
+ if (panel_layer == BOTTOM_LAYER)
+ XLowerWindow (server.dsp, panel->main_win);
task_drag = 0;
return;
}
Taskbar *tskbar;
if ( !(tskbar = click_taskbar(panel, e->xbutton.x, e->xbutton.y)) ) {
// TODO: check better solution to keep window below
- XLowerWindow (server.dsp, panel->main_win);
+ if (panel_layer == BOTTOM_LAYER)
+ XLowerWindow (server.dsp, panel->main_win);
task_drag = 0;
return;
}
window_action( click_task(panel, e->xbutton.x, e->xbutton.y), action);
// to keep window below
- XLowerWindow (server.dsp, panel->main_win);
+ if (panel_layer == BOTTOM_LAYER)
+ XLowerWindow (server.dsp, panel->main_win);
}