feat: add pane_left and pane_right widget types
This commit is contained in:
parent
c6e56abcb0
commit
2e150f6c62
2 changed files with 6 additions and 0 deletions
|
|
@ -1983,6 +1983,8 @@ pub fn get_widget_style(widget_type: WidgetType) *const WidgetStyle {
|
|||
.palette => WidgetStyle.from_tag(config_.palette_style),
|
||||
.panel => WidgetStyle.from_tag(config_.panel_style),
|
||||
.home => WidgetStyle.from_tag(config_.home_style),
|
||||
.pane_left => WidgetStyle.from_tag(config_.pane_left_style),
|
||||
.pane_right => WidgetStyle.from_tag(config_.pane_right_style),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -2006,6 +2008,8 @@ fn widget_type_config_variable(widget_type: WidgetType) *ConfigWidgetStyle {
|
|||
.palette => &config_.palette_style,
|
||||
.panel => &config_.panel_style,
|
||||
.home => &config_.home_style,
|
||||
.pane_left => &config_.pane_left_style,
|
||||
.pane_right => &config_.pane_right_style,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue