diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-10-20 22:44:15 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-10-20 22:44:15 +0200 |
commit | d84054ecbbd15e92736e5e5f55e36f72f410d3a5 (patch) | |
tree | 25f3aae9ca5c4e16eb0bfe163044c1080f9bed96 /src/gui/SettingsPage.cpp | |
parent | 939bf23921cce4b934ecc2a98fa871c7538d0276 (diff) |
gsr-overlay > gsr-ui
Diffstat (limited to 'src/gui/SettingsPage.cpp')
-rw-r--r-- | src/gui/SettingsPage.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/SettingsPage.cpp b/src/gui/SettingsPage.cpp index 8b06499..fb2cc68 100644 --- a/src/gui/SettingsPage.cpp +++ b/src/gui/SettingsPage.cpp @@ -48,8 +48,9 @@ namespace gsr { std::unique_ptr<ComboBox> SettingsPage::create_record_area_box(const GsrInfo &gsr_info) { auto record_area_box = std::make_unique<ComboBox>(&get_theme().body_font); // TODO: Show options not supported but disable them - if(gsr_info.supported_capture_options.window) - record_area_box->add_item("Window", "window"); + // TODO: Enable this + //if(gsr_info.supported_capture_options.window) + // record_area_box->add_item("Window", "window"); if(gsr_info.supported_capture_options.focused) record_area_box->add_item("Follow focused window", "focused"); if(gsr_info.supported_capture_options.screen) |