all repos — tint2 @ 745108dc6dc8464abc5528d8f558faafcf60589a

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

tint2conf: Fix regression (launcher items from the config should not be sorted)
o9000 mrovi9000@gmail.com
commit

745108dc6dc8464abc5528d8f558faafcf60589a

parent

448feae732b18053829b89c6f6c0bda4f0dcecfe

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

jump to
M src/tint2conf/properties.csrc/tint2conf/properties.c

@@ -2297,7 +2297,7 @@ DesktopEntry entry;

if (read_desktop_file(file, &entry)) { int index; gboolean stop = FALSE; - for (index = 0; !stop; index++) { + for (index = 0; !stop || selected; index++) { GtkTreePath *path = gtk_tree_path_new_from_indices(index, -1); GtkTreeIter iter; gboolean found = gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, path);