This commit is contained in:
dec05eba
2024-11-16 11:39:02 +01:00
parent 7d4762e0f2
commit e0ddfa82dd
2 changed files with 4 additions and 2 deletions

2
TODO
View File

@@ -85,3 +85,5 @@ 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.
Add audio devices/app refresh button.

View File

@@ -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;