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



commit 5eb5f0dd6eba487db07a993502194a940d1b48db
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 1a2111a4..d9fc74aa 100644
--- a/src/assistant/remote-connection.vala
+++ b/src/assistant/remote-connection.vala
@@ -43,7 +43,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]