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

SoundPlayer: Add option to hide scope

Fixes #521. The scope can be hidden using the option in the app menu.
This commit is contained in:
Till Mayer 2019-11-09 18:03:12 +01:00 committed by Andreas Kling
parent 56cd8b4d17
commit b4c18870de
3 changed files with 21 additions and 5 deletions

View file

@ -13,6 +13,7 @@ class SoundPlayerWidget final : public GWidget {
public:
virtual ~SoundPlayerWidget() override;
void open_file(String path);
void hide_scope(bool);
PlaybackManager& manager() { return m_manager; }
private: