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

4
TODO
View File

@@ -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 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. 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() { 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->set_checked(false);
application_audio_invert_checkbox_ptr = application_audio_invert_checkbox.get(); application_audio_invert_checkbox_ptr = application_audio_invert_checkbox.get();
return application_audio_invert_checkbox; return application_audio_invert_checkbox;