diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-11 16:48:38 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-11 16:48:38 +0200 |
commit | b54ac1c26655ea178dbd2bed2c69648d521a62ec (patch) | |
tree | be125575328f9079d5cd51eab6ff79dc7cf25c7c /src/user-list.vala | |
parent | f9c678d50411f1222ca60bea1c22128b0678a764 (diff) | |
download | arctica-greeter-b54ac1c26655ea178dbd2bed2c69648d521a62ec.tar.gz arctica-greeter-b54ac1c26655ea178dbd2bed2c69648d521a62ec.tar.bz2 arctica-greeter-b54ac1c26655ea178dbd2bed2c69648d521a62ec.zip |
Remote Logon configuration support: session name is now "remoteconfigure".
Diffstat (limited to 'src/user-list.vala')
-rw-r--r-- | src/user-list.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user-list.vala b/src/user-list.vala index f1c4a20..cb2be6e 100644 --- a/src/user-list.vala +++ b/src/user-list.vala @@ -551,7 +551,7 @@ public class UserList : GreeterList //dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); // For 12.10 we still don't support Citrix dialog.secondary_text = _("If you have an account on an RDP server or X2Go server, Remote Login lets you run applications from that server."); - if ((offer_guest) && (is_supported_remote_session ("uccsconfigure"))) + if ((offer_guest) && (is_supported_remote_session ("remoteconfigure"))) { dialog.add_button (_("Cancel"), 0); var b = dialog.add_button (_("Set Up…"), 1); @@ -569,7 +569,7 @@ public class UserList : GreeterList { if (id == 1) { - var config_session = "uccsconfigure"; + var config_session = "remoteconfigure"; if (is_supported_remote_session (config_session)) { greeter_authenticating_user = selected_entry.id; |