all repos — tint2 @ bd28ee77d9a29823b8a49cae0ba003c793991ffa

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

Fix task icon size limits (https://forums.bunsenlabs.org/viewtopic.php?pid=51884)
o9000 mrovi9000@gmail.com
commit

bd28ee77d9a29823b8a49cae0ba003c793991ffa

parent

d10a505aa951c8c3589f5c5f3a2fb0c2f0dd93b4

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

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

@@ -238,9 +238,9 @@ panel->g_task.background[TASK_ICONIFIED] = panel->g_task.background[TASK_NORMAL];

if ((panel->g_task.config_background_mask & (1 << TASK_URGENT)) == 0) panel->g_task.background[TASK_URGENT] = panel->g_task.background[TASK_ACTIVE]; - if (!panel->g_task.maximum_width) + if (!panel->g_task.maximum_width || !panel_horizontal) panel->g_task.maximum_width = server.monitors[panel->monitor].width; - if (!panel->g_task.maximum_height) + if (!panel->g_task.maximum_height || panel_horizontal) panel->g_task.maximum_height = server.monitors[panel->monitor].height; if (panel_horizontal) {