[gnome-boxes/add-vnc-graphics-device-to-domains] vm-configurator: Add VNC graphics device to domains




commit b666025818bce38c19bf6887c03f2ed39e982ba3
Author: Felipe Borges <felipeborges gnome org>
Date:   Thu Aug 12 13:47:00 2021 +0200

    vm-configurator: Add VNC graphics device to domains
    
    Fixes #377

 src/vm-configurator.vala | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/src/vm-configurator.vala b/src/vm-configurator.vala
index 28b8e36b..975f6017 100644
--- a/src/vm-configurator.vala
+++ b/src/vm-configurator.vala
@@ -89,6 +89,9 @@ public static Domain create_domain_config (InstallerMedia install_media, string
         var graphics = create_graphics_device ();
         domain.add_device (graphics);
 
+        var vnc_graphics = new DomainGraphicsVnc ();
+        domain.add_device (vnc_graphics);
+
         // SPICE agent channel. This is needed for features like copy and paste between host and guest etc 
to work.
         var channel = new DomainChannel ();
         channel.set_target_type (DomainChannelTargetType.VIRTIO);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]