- Update to 0.25.2: * Lots of minor bug fixes (see git log) * Flat look to match new flat theme * New much higher quality default wallpaper set * Optimized XKB keymap change handling * Init splash is now always on (theme can remove it if desired) * Added screen setup menu entry in quick settings menu * Redid a lot of screen dimming/blanking/timeout code to fix cruft * IBox iconify gadget has window previews on mouse-over now * New gesture recognition bindings for touchpads (using Elput) * On loss or re-plug in of screen now restore windows sensibly * Tasks has window preview on mouse-over now * FPS debug (ctl+alt+shift+f to toggle) has a lot more data now * BT devices in the Bluez gadget will show battery level if supported * Battery now has mouse-over popup with detailed battery information * Config saving moved to threads to minimize I/O stutter to core * Shot allows copy of screenshot to copy and paste selection too now * Temperature monitor now uses hwmon devices and multiple instances * New Procstats module can show mem/CPU usage in titlebar * Offline/presentation mode removed - use bindings + actions instead * Remove custom desklock command - built in is more reliable * Winlist (alt+tab) has large mode with window previews now * Pluggable device monitoring and applying of input config on plug * Added workaround broken Spotify cover art URLs * Scale settings will now modify xsettings DPI to make non-efl apps scale * Fonts now made to be consistent with EFL and other apps * Added binding action to switch profiles * EFM - sync more often when doing I/O ops like copy etc. * XDG_CURRENT_DESKTOP is now set too * EFM image preview will show EFIX dates for when image taken OBS-URL: https://build.opensuse.org/request/show/952688 OBS-URL: https://build.opensuse.org/package/show/X11:Enlightenment:Factory/enlightenment?expand=0&rev=280
23 lines
790 B
Diff
23 lines
790 B
Diff
Index: enlightenment-0.25.2/src/modules/wizard/page_170.c
|
|
===================================================================
|
|
--- enlightenment-0.25.2.orig/src/modules/wizard/page_170.c
|
|
+++ enlightenment-0.25.2/src/modules/wizard/page_170.c
|
|
@@ -2,7 +2,7 @@
|
|
#include "e_wizard.h"
|
|
#include "e_wizard_api.h"
|
|
|
|
-static Eina_Bool do_up = 1;
|
|
+static Eina_Bool do_up = 0;
|
|
/*
|
|
E_API int
|
|
wizard_page_init(E_Wizard_Page *pg EINA_UNUSED, Eina_Bool *need_xdg_desktops EINA_UNUSED, Eina_Bool *need_xdg_icons EINA_UNUSED)
|
|
@@ -64,7 +64,7 @@ wizard_page_show(E_Wizard_Page *pg EINA_
|
|
evas_object_show(of);
|
|
|
|
api->wizard_page_show(of);
|
|
- return 1; /* 1 == show ui, and wait for user, 0 == just continue */
|
|
+ return 0; /* 1 == show ui, and wait for user, 0 == just continue */
|
|
}
|
|
|
|
E_API int
|