aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-01-01 19:17:31 +0100
committerdec05eba <dec05eba@protonmail.com>2023-01-01 19:17:31 +0100
commit0be5ae0720a45ce391a59530a3ef7d3c9318011e (patch)
tree0602c89e7824e04394183dba3b3f1b3ad9d2b09e
parent19676f82538fac3181e900b8ec3e08942fd7e89d (diff)
Remove mention of nvfbc
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 3e8409e..84940f6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1049,14 +1049,14 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a
gtk_combo_box_text_append(record_area_selection_menu, "window", "Window");
gtk_combo_box_text_append(record_area_selection_menu, "focused", "Follow focused window");
if(is_nv_fbc_installed()) {
- gtk_combo_box_text_append(record_area_selection_menu, "screen", "All monitors (NvFBC)");
- gtk_combo_box_text_append(record_area_selection_menu, "screen-direct", "All monitors, direct mode (NvFBC, VRR workaround)");
+ gtk_combo_box_text_append(record_area_selection_menu, "screen", "All monitors");
+ gtk_combo_box_text_append(record_area_selection_menu, "screen-direct", "All monitors, direct mode (VRR workaround)");
for_each_active_monitor_output(gdk_x11_get_default_xdisplay(), [](const XRROutputInfo *output_info, const XRRCrtcInfo*, const XRRModeInfo *mode_info) {
std::string label = "Monitor ";
label.append(output_info->name, output_info->nameLen);
label += " (";
label.append(mode_info->name, mode_info->nameLength);
- label += ", NvFBC)";
+ label += ")";
// Leak on purpose, what are you gonna do? stab me?
char *id = (char*)malloc(output_info->nameLen + 1);