Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/tool_hello_world_python/toolsdevler.py')
-rw-r--r--plugins/tool_hello_world_python/toolsdevler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/tool_hello_world_python/toolsdevler.py b/plugins/tool_hello_world_python/toolsdevler.py
index 4597f73f3..d47d86d5e 100644
--- a/plugins/tool_hello_world_python/toolsdevler.py
+++ b/plugins/tool_hello_world_python/toolsdevler.py
@@ -15,8 +15,8 @@ class HelloPlugin:
self.type = "protocol"
self.description = "Hello World!"
self.version = "1.0"
- self.icon_name = "remmina-tool"
- self.icon_name_ssh = "remmina-tool"
+ self.icon_name = "org.remmina.Remmina-tool-symbolic"
+ self.icon_name_ssh = "org.remmina.Remmina-tool-symbolic"
self.btn = Gtk.Button(label="Hello!")
self.btn.connect("clicked", self.callback_add, "hello")
pass