WIP: uv-simple-select #1

Closed
Chris Blackbourn wants to merge 182 commits from uv-simple-select into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit f815ae44ab - Show all commits

View File

@ -331,7 +331,7 @@ static void apply_selection_operation_at_index(GMutableSpan selection,
selection_typed[index] = false;
break;
case SEL_OP_XOR:
selection_typed[index] ^= selection_typed[index];
selection_typed[index] = !selection_typed[index];
break;
default:
break;