fix: add missing selection_updated call to palette up/down commands
This commit is contained in:
parent
c5e7b1f896
commit
3bea19084c
1 changed files with 2 additions and 0 deletions
|
@ -433,6 +433,7 @@ pub fn Create(options: type) type {
|
||||||
self.view_pos += 1;
|
self.view_pos += 1;
|
||||||
try self.start_query();
|
try self.start_query();
|
||||||
self.menu.select_last();
|
self.menu.select_last();
|
||||||
|
self.selection_updated();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -447,6 +448,7 @@ pub fn Create(options: type) type {
|
||||||
self.view_pos -= 1;
|
self.view_pos -= 1;
|
||||||
try self.start_query();
|
try self.start_query();
|
||||||
self.menu.select_first();
|
self.menu.select_first();
|
||||||
|
self.selection_updated();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue