diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-09-11 00:54:57 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-09-11 00:54:57 +0200 |
commit | dd906c6a9dde666af0b10cc016039f312733201f (patch) | |
tree | a18fea76ed728067cafba65d833234d92c2afcd3 /include/gui/SettingsPage.hpp | |
parent | 747344b858c4750e7b0b19ca10c3727148c2a161 (diff) |
Make scrollbar movable with mouse, limit filechooser content to inside of file item
Diffstat (limited to 'include/gui/SettingsPage.hpp')
-rw-r--r-- | include/gui/SettingsPage.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gui/SettingsPage.hpp b/include/gui/SettingsPage.hpp index b22506e..a9d79bc 100644 --- a/include/gui/SettingsPage.hpp +++ b/include/gui/SettingsPage.hpp @@ -57,7 +57,6 @@ namespace gsr { std::unique_ptr<List> create_video_codec(const GsrInfo &gsr_info); std::unique_ptr<ComboBox> create_audio_codec_box(); std::unique_ptr<List> create_audio_codec(); - std::unique_ptr<List> create_codec_section(const GsrInfo &gsr_info); std::unique_ptr<Entry> create_framerate_entry(); std::unique_ptr<List> create_framerate(); std::unique_ptr<ComboBox> create_framerate_mode_box(); @@ -101,7 +100,8 @@ namespace gsr { List *area_size_list_ptr = nullptr; List *restore_portal_session_list_ptr = nullptr; List *color_range_list_ptr = nullptr; - List *codec_list_ptr = nullptr; + Widget *video_codec_ptr = nullptr; + Widget *audio_codec_ptr = nullptr; List *framerate_mode_list_ptr = nullptr; ComboBox *record_area_box_ptr = nullptr; Entry *area_width_entry_ptr = nullptr; |