diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/bin/e_remember.c | 2 |
3 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,9 @@ | |||
1 | 2013-05-29 Mike Blumenkrantz | 1 | 2013-05-29 Mike Blumenkrantz |
2 | 2 | ||
3 | * fix remember size/position apply | ||
4 | |||
5 | 2013-05-29 Mike Blumenkrantz | ||
6 | |||
3 | * added e_border_inset utility functions | 7 | * added e_border_inset utility functions |
4 | * new winlist config option for moving selected window to current desk | 8 | * new winlist config option for moving selected window to current desk |
5 | 9 | ||
@@ -218,3 +218,4 @@ Fixes: | |||
218 | * fixed theme bug which prevented windows from unshading correctly when animations were disabled | 218 | * fixed theme bug which prevented windows from unshading correctly when animations were disabled |
219 | * filemanager windows no longer resize to 0x0 when double clicked with no icons present | 219 | * filemanager windows no longer resize to 0x0 when double clicked with no icons present |
220 | * fixed e_exec to open .desktop url links | 220 | * fixed e_exec to open .desktop url links |
221 | * fix remember size/position apply | ||
diff --git a/src/bin/e_remember.c b/src/bin/e_remember.c index 525e68c21..4634a4002 100644 --- a/src/bin/e_remember.c +++ b/src/bin/e_remember.c | |||
@@ -723,6 +723,7 @@ _e_remember_cb_hook_pre_post_fetch(void *data __UNUSED__, void *border) | |||
723 | } | 723 | } |
724 | bd->changes.size = 1; | 724 | bd->changes.size = 1; |
725 | bd->changes.shape = 1; | 725 | bd->changes.shape = 1; |
726 | BD_CHANGED(bd); | ||
726 | } | 727 | } |
727 | if ((rem->apply & E_REMEMBER_APPLY_POS) && (!bd->re_manage)) | 728 | if ((rem->apply & E_REMEMBER_APPLY_POS) && (!bd->re_manage)) |
728 | { | 729 | { |
@@ -836,6 +837,7 @@ _e_remember_cb_hook_pre_post_fetch(void *data __UNUSED__, void *border) | |||
836 | bd->y += bd->zone->y; | 837 | bd->y += bd->zone->y; |
837 | bd->placed = 1; | 838 | bd->placed = 1; |
838 | bd->changes.pos = 1; | 839 | bd->changes.pos = 1; |
840 | BD_CHANGED(bd); | ||
839 | } | 841 | } |
840 | if (rem->apply & E_REMEMBER_APPLY_LAYER) | 842 | if (rem->apply & E_REMEMBER_APPLY_LAYER) |
841 | { | 843 | { |