mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 20:16:02 +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
Notes:
sideshowbarker
2024-07-17 11:05:20 +09:00
Author: https://github.com/AtkinsSJ
Commit: 0e1c8e702c
Pull-request: https://github.com/SerenityOS/serenity/pull/14005
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