mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-01 15:49:51 +08:00
win-capture: Fix compat info showing in hotkey mode
This commit is contained in:
@@ -2258,7 +2258,8 @@ static bool window_changed_callback(obs_properties_t *ppts, obs_property_t *p,
|
||||
obs_data_get_bool(settings, SETTING_ANY_FULLSCREEN);
|
||||
} else {
|
||||
const char *mode = obs_data_get_string(settings, SETTING_MODE);
|
||||
capture_any = strcmp(mode, SETTING_MODE_ANY) == 0;
|
||||
capture_any = strcmp(mode, SETTING_MODE_ANY) == 0 ||
|
||||
strcmp(mode, SETTING_MODE_HOTKEY) == 0;
|
||||
}
|
||||
|
||||
if (capture_any)
|
||||
|
||||
Reference in New Issue
Block a user