1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:07:34 +00:00

Terminal: Settings windows can be opened multiple times

This commit is contained in:
Christopher Dumas 2019-05-31 13:28:47 -07:00 committed by Andreas Kling
parent f8a02d4733
commit 6a4cb25557
6 changed files with 67 additions and 5964 deletions

View file

@ -26,7 +26,8 @@ public:
void apply_size_increments_to_window(GWindow&);
void set_opacity(float);
bool should_beep() { return m_should_beep; };
float opacity() { return m_opacity; };
bool should_beep() { return m_should_beep; }
void set_should_beep(bool sb) { m_should_beep = sb; };
RetainPtr<CConfigFile> config() const { return m_config; }