fix: add missing selection_updated call to palette up/down commands

This commit is contained in:
CJ van den Berg 2024-10-09 20:46:44 +02:00
parent c5e7b1f896
commit 3bea19084c
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -433,6 +433,7 @@ pub fn Create(options: type) type {
self.view_pos += 1;
try self.start_query();
self.menu.select_last();
self.selection_updated();
return;
}
}
@ -447,6 +448,7 @@ pub fn Create(options: type) type {
self.view_pos -= 1;
try self.start_query();
self.menu.select_first();
self.selection_updated();
return;
}
}