diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-11-16 11:39:02 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-11-16 11:39:02 +0100 |
commit | e0ddfa82dd585fe33cb5dc397ad418f336c56724 (patch) | |
tree | 9d3cf017a6a6b8c61a5f2bd92239ecfdf316656e | |
parent | 7d4762e0f2594125d6eeb0a09283ecbadcbdf562 (diff) |
Wording
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | src/gui/SettingsPage.cpp | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -84,4 +84,6 @@ Get focused window when opening gsr-ui and pass that to the save replay script, gsr ui window has _NET_WM_STATE _NET_WM_STATE_ABOVE, not _NET_WM_STATE_FULLSCREEN -For replay on fullscreen detect focused fullscreen window by checking if the window size is the same as the monitor size instead of _NET_WM_STATE_FULLSCREEN.
\ No newline at end of file +For replay on fullscreen detect focused fullscreen window by checking if the window size is the same as the monitor size instead of _NET_WM_STATE_FULLSCREEN. + +Add audio devices/app refresh button. diff --git a/src/gui/SettingsPage.cpp b/src/gui/SettingsPage.cpp index 7f50363..d3083df 100644 --- a/src/gui/SettingsPage.cpp +++ b/src/gui/SettingsPage.cpp @@ -299,7 +299,7 @@ namespace gsr { } std::unique_ptr<CheckBox> SettingsPage::create_application_audio_invert_checkbox() { - auto application_audio_invert_checkbox = std::make_unique<CheckBox>(&get_theme().body_font, "Record all applications except the selected ones"); + auto application_audio_invert_checkbox = std::make_unique<CheckBox>(&get_theme().body_font, "Record audio from all applications except the selected ones"); application_audio_invert_checkbox->set_checked(false); application_audio_invert_checkbox_ptr = application_audio_invert_checkbox.get(); return application_audio_invert_checkbox; |