lbonn / rofi

Rofi: A window switcher, run dialog and dmenu replacement - fork with wayland support
Other
927 stars 36 forks source link

Fix extraneous leading whitespace #84

Closed Buer-Nahida closed 11 months ago

Buer-Nahida commented 1 year ago

Fixed https://github.com/davatorium/rofi/issues/1834

source/modes/dmenu.c
```diff 389 unsigned int index = 390 (unsigned int)g_ascii_strtoull(pd->columns[i], NULL, 10); 391 if (index <= ns && index > 0) { -392 if (index == 1) { +392 if (i == 0) { 393 g_string_append(str_retv, splitted[index - 1]); 394 } else { 395 g_string_append_c(str_retv, '\t'); ```
lbonn commented 12 months ago

Please stop with the empty messages to get attention.

I periodically merge commits in batches from upstream and would only cherry-pick fixes for major issues (eg crash, security...), please be patient

If this patch is important for you, you may have to run your own version.

lbonn commented 11 months ago

@SR-MyStar upstream was back-ported, this change is now on the tip of the wayland branch