e_fm2: view mode is back!

As I suspected it was not error on my code. At the end it was just a
missing theme.

For now I just aliased default to desktop, but I guess it's better to
come with something else transparent so we can see our
wallpaper. Themers?!

PS: for Illume I think it makes sense to have that menu, but for
desktop it does not, maybe we should add more flags to turn off just
view mode selection and keep icon size? Or just turn off lists... or
just let the user choose, there are many strange users out there, one
might like it.



SVN revision: 37983
This commit is contained in:
Gustavo Sverzut Barbieri 2008-12-07 13:53:25 +00:00
parent 20f6eeb1d2
commit 1d214683a9
2 changed files with 4 additions and 3 deletions

View File

@ -15346,6 +15346,7 @@ collections { /* begin the collection of edje groups that are in this file */
} }
group { name: "e/fileman/default/list/fixed"; group { name: "e/fileman/default/list/fixed";
alias: "e/fileman/desktop/list/fixed";
data.item: "stacking" "above"; data.item: "stacking" "above";
data.item: "selectraise" "on"; data.item: "selectraise" "on";
images { images {
@ -15809,6 +15810,7 @@ collections { /* begin the collection of edje groups that are in this file */
} }
group { name: "e/fileman/default/list_odd/fixed"; group { name: "e/fileman/default/list_odd/fixed";
name: "e/fileman/desktop/list_odd/fixed";
data.item: "stacking" "below"; data.item: "stacking" "below";
data.item: "selectraise" "on"; data.item: "selectraise" "on";
images { images {

View File

@ -3054,9 +3054,8 @@ _e_fm2_icons_place_list(E_Fm2_Smart_Data *sd)
static inline char static inline char
_e_fm2_view_mode_get(const E_Fm2_Smart_Data *sd) _e_fm2_view_mode_get(const E_Fm2_Smart_Data *sd)
{ {
// this breaks illume on openembedded. disable! :( if (sd->view_mode > -1)
// if (sd->view_mode > -1) return sd->view_mode;
// return sd->view_mode;
return sd->config->view.mode; return sd->config->view.mode;
} }