diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 10:49:17 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 10:49:17 +0200 |
commit | 7868ff68cff97b21fe6d8681f8bc0334849c4d38 (patch) | |
tree | 0df9dca31bec8cf01fe0395818d148befec136ab /src/Commands.vala | |
parent | 5b7b3b1dfd5ce7c275881098310667b09562ad27 (diff) |
New upstream version 0.32.13upstream/0.32.13upstream
Diffstat (limited to 'src/Commands.vala')
-rw-r--r-- | src/Commands.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Commands.vala b/src/Commands.vala index 76aecb4..25bdbc2 100644 --- a/src/Commands.vala +++ b/src/Commands.vala @@ -321,7 +321,7 @@ public abstract class MultipleDataSourceCommand : PageCommand { private void on_source_destroyed(DataSource source) { // as with SingleDataSourceCommand, too risky to selectively remove commands from the stack, // although this could be reconsidered in the future - if (source_list.contains(source)) + if (source_list.contains(source) && get_command_manager() != null) get_command_manager().reset(); } |