[gnome-boxes/allow-spice-in-remote-connections-gnome-3-36] remote-connection, assistant: Allow "spice://" addresses



commit f4a8c1e7120b3c0e068626a70b159c9d20aefd57
Author: Felipe Borges <felipeborges gnome org>
Date:   Tue Mar 17 10:47:27 2020 +0100

    remote-connection, assistant: Allow "spice://" addresses
    
    Fixes #490

 src/assistant/remote-connection.vala | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/src/assistant/remote-connection.vala b/src/assistant/remote-connection.vala
index d2342815..b1bea322 100644
--- a/src/assistant/remote-connection.vala
+++ b/src/assistant/remote-connection.vala
@@ -41,7 +41,8 @@ private void on_url_entry_changed () {
 
         if (uri.scheme == "vnc" ||
             uri.scheme == "ssh" ||
-            uri.scheme == "rdp") {
+            uri.scheme == "rdp" ||
+            uri.scheme == "spice") {
             connect_button.sensitive = true;
         }
     }


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