bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/apps/extra.git/commit/?id=275d7772c4c49b41a72693ae1dc453e62eee1d5a

commit 275d7772c4c49b41a72693ae1dc453e62eee1d5a
Author: Marcel Hollerbach <marcel-hollerb...@t-online.de>
Date:   Tue Apr 18 15:33:13 2017 +0200

    extra: swtich details and fullscreen buttons
    
    they were the exact other way arround
---
 src/bin/extra_background_selector.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/bin/extra_background_selector.c 
b/src/bin/extra_background_selector.c
index aca8a98..eb2db30 100644
--- a/src/bin/extra_background_selector.c
+++ b/src/bin/extra_background_selector.c
@@ -84,16 +84,6 @@ _show_tooltip(Extra_Background *b)
     elm_box_pack_end(box, o);
     evas_object_show(o);
 
-    //show details
-    o = elm_button_add(box);
-    evas_object_smart_callback_add(o, "clicked", _show_details, b);
-    elm_object_text_set(o, "Show Details");
-    evas_object_show(o);
-    elm_box_pack_end(box, o);
-    icon = elm_icon_add(o);
-    elm_icon_standard_set(icon, "document-properties");
-    elm_object_part_content_set(o, "icon", icon);
-
     //view-fullscreen
     o = elm_button_add(box);
     elm_object_text_set(o, "Show fullscreen");
@@ -104,6 +94,16 @@ _show_tooltip(Extra_Background *b)
     elm_icon_standard_set(icon, "view-fullscreen");
     elm_object_part_content_set(o, "icon", icon);
 
+    //show details
+    o = elm_button_add(box);
+    evas_object_smart_callback_add(o, "clicked", _show_details, b);
+    elm_object_text_set(o, "Show Details");
+    evas_object_show(o);
+    elm_box_pack_end(box, o);
+    icon = elm_icon_add(o);
+    elm_icon_standard_set(icon, "document-properties");
+    elm_object_part_content_set(o, "icon", icon);
+
     extra_ui_show_popup_toolbar(box);
 }
 

-- 


Reply via email to