feat: add dropdown_next_widget_style command

This commit is contained in:
CJ van den Berg 2025-12-18 22:13:06 +01:00
parent 3a61bb2ae9
commit b92d5a2acb
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 8 additions and 0 deletions

View file

@ -1580,6 +1580,13 @@ const cmds = struct {
try save_config();
}
pub const hint_window_next_widget_style_meta: Meta = .{};
pub fn dropdown_next_widget_style(_: *Self, _: Ctx) Result {
set_next_style(.dropdown);
need_render();
try save_config();
}
pub const dropdown_next_widget_style_meta: Meta = .{};
};
pub const MiniMode = struct {