aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-11-05 02:17:40 +0100
committerdec05eba <dec05eba@protonmail.com>2023-11-05 02:17:40 +0100
commit69eca98086793643107a4b7073d8062fb7593f0b (patch)
treef6e34763095935724780e65db8ac000b2b4d1357 /src/main.cpp
parentc88c03e83f932e335d929237914a4991ede34c50 (diff)
Disable screen direct capture option as this is broken thanks to nvidia
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9051e80..cf108c4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2052,10 +2052,8 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a
}
const bool allow_screen_capture = wayland || nvfbc_installed || gpu_inf.vendor != GPU_VENDOR_NVIDIA;
if(allow_screen_capture) {
- if(!wayland && gpu_inf.vendor == GPU_VENDOR_NVIDIA) {
+ if(!wayland && gpu_inf.vendor == GPU_VENDOR_NVIDIA)
gtk_combo_box_text_append(record_area_selection_menu, "screen", "All monitors");
- gtk_combo_box_text_append(record_area_selection_menu, "screen-direct-force", "All monitors (for VRR. No cursor, may have driver issues. Only use with VRR monitors!)");
- }
void *connection = NULL;
gsr_connection_type connection_type = GSR_CONNECTION_DRM;
@@ -2609,7 +2607,7 @@ static void load_config(const gpu_info &gpu_inf) {
//
} else if(!wayland && gpu_inf.vendor == GPU_VENDOR_NVIDIA && strcmp(config.main_config.record_area_option.c_str(), "focused") == 0) {
//
- } else if(!wayland && gpu_inf.vendor == GPU_VENDOR_NVIDIA && (strcmp(config.main_config.record_area_option.c_str(), "screen") == 0 || strcmp(config.main_config.record_area_option.c_str(), "screen-direct-force") == 0)) {
+ } else if(!wayland && gpu_inf.vendor == GPU_VENDOR_NVIDIA && strcmp(config.main_config.record_area_option.c_str(), "screen") == 0) {
//
} else {
void *connection = NULL;