Skip to content
Snippets Groups Projects
Commit 4ec6ad88 authored by Mason Hock's avatar Mason Hock
Browse files

fix swapped logout and lock labels

parent 860d7dd7
No related branches found
No related tags found
5 merge requests!307Etiona test mr,!274dvdstyler package helper for flidas,!273dvdstyler package helper,!250Etiona MATE desktop,!179Corrected patch for make-bleachbit
......@@ -43,7 +43,7 @@ index 9fd6b2b..3c316c0 100644
+ widget = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
+ image = gtk_image_new_from_icon_name("system-lock-screen", GTK_ICON_SIZE_MENU);
+ gtk_box_pack_start(GTK_BOX(widget), image, FALSE, FALSE, 0);
+ label = gtk_label_new("Log Out");
+ label = gtk_label_new("Lock Screen");
+ gtk_box_pack_start(GTK_BOX(widget), label, FALSE, FALSE, 0);
+ gtk_container_add(GTK_CONTAINER(button), widget);
+ self->button_logout = button;
......@@ -63,7 +63,7 @@ index 9fd6b2b..3c316c0 100644
+ widget = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
+ image = gtk_image_new_from_icon_name("application-exit", GTK_ICON_SIZE_MENU);
+ gtk_box_pack_start(GTK_BOX(widget), image, FALSE, FALSE, 0);
+ label = gtk_label_new("Lock Screen");
+ label = gtk_label_new("Log Out");
+ gtk_box_pack_start(GTK_BOX(widget), label, FALSE, FALSE, 0);
+ gtk_container_add(GTK_CONTAINER(button), widget);
+ self->button_logout = button;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment