mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:57:44 +00:00
LibGUI: Expose more TabWidget properties to GML
- close_button_enabled - show_tab_bar - reorder_allowed
This commit is contained in:
parent
f64a164392
commit
0e1c8e702c
2 changed files with 4 additions and 1 deletions
|
@ -81,6 +81,7 @@ public:
|
|||
bool is_bar_visible() const { return m_bar_visible; };
|
||||
|
||||
void set_close_button_enabled(bool close_button_enabled) { m_close_button_enabled = close_button_enabled; };
|
||||
bool close_button_enabled() const { return m_close_button_enabled; }
|
||||
|
||||
void set_reorder_allowed(bool reorder_allowed) { m_reorder_allowed = reorder_allowed; }
|
||||
bool reorder_allowed() const { return m_reorder_allowed; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue