From 7add17a39b4e72da26c5126527ee52c48e94b3c6 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Fri, 26 Oct 2018 17:02:26 +0100 Subject: [PATCH] dont enable gpu by default on gtk --- src/Gtk/Avalonia.Gtk3/Gtk3Platform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gtk/Avalonia.Gtk3/Gtk3Platform.cs b/src/Gtk/Avalonia.Gtk3/Gtk3Platform.cs index 7bb8facaf5..13b610c062 100644 --- a/src/Gtk/Avalonia.Gtk3/Gtk3Platform.cs +++ b/src/Gtk/Avalonia.Gtk3/Gtk3Platform.cs @@ -149,7 +149,7 @@ namespace Avalonia.Gtk3 public class Gtk3PlatformOptions { public bool? UseDeferredRendering { get; set; } = true; - public bool? UseGpuAcceleration { get; set; } = true; + public bool? UseGpuAcceleration { get; set; }; public ICustomGtk3NativeLibraryResolver CustomResolver { get; set; } } }