Re: [E-devel] Elm window resize

2014-05-21 Thread Bluezery
test code and lodge a proper bug report. -Regards, Hermet- -Original Message- From: David Seikelonef...@gmail.com To: enlightenment-devel@lists.sourceforge.net; Cc: Sent: 2014-05-20 (화) 16:11:59 Subject: Re: [E-devel] Elm window resize

Re: [E-devel] Elm window resize

2014-05-20 Thread The Rasterman
On Mon, 19 May 2014 23:40:13 +0100 Andrew Williams a...@andywilliams.me said: Hi guys, After opening this task about indow sizes in elm not respecting the scale set: https://phab.enlightenment.org/T1263 I realised that these are all set through evas_object_resize which clearly cannot

Re: [E-devel] Elm window resize

2014-05-20 Thread David Seikel
On Tue, 20 May 2014 15:50:54 +0900 Carsten Haitzler (The Rasterman) ras...@rasterman.com wrote: On Mon, 19 May 2014 23:40:13 +0100 Andrew Williams a...@andywilliams.me said: Hi guys, After opening this task about indow sizes in elm not respecting the scale set:

Re: [E-devel] Elm window resize

2014-05-20 Thread The Rasterman
On Tue, 20 May 2014 17:11:59 +1000 David Seikel onef...@gmail.com said: On Tue, 20 May 2014 15:50:54 +0900 Carsten Haitzler (The Rasterman) ras...@rasterman.com wrote: On Mon, 19 May 2014 23:40:13 +0100 Andrew Williams a...@andywilliams.me said: Hi guys, After opening this

Re: [E-devel] Elm window resize

2014-05-20 Thread Daniel Juyung Seo
On Tue, May 20, 2014 at 3:50 PM, Carsten Haitzler ras...@rasterman.comwrote: On Mon, 19 May 2014 23:40:13 +0100 Andrew Williams a...@andywilliams.me said: Hi guys, After opening this task about indow sizes in elm not respecting the scale set: https://phab.enlightenment.org/T1263 I

Re: [E-devel] Elm window resize

2014-05-20 Thread The Rasterman
On Tue, 20 May 2014 18:55:52 +0900 Daniel Juyung Seo seojuyu...@gmail.com said: On Tue, May 20, 2014 at 3:50 PM, Carsten Haitzler ras...@rasterman.comwrote: On Mon, 19 May 2014 23:40:13 +0100 Andrew Williams a...@andywilliams.me said: Hi guys, After opening this task about indow

Re: [E-devel] Elm window resize

2014-05-20 Thread David Seikel
On Tue, 20 May 2014 18:46:24 +0900 Carsten Haitzler (The Rasterman) ras...@rasterman.com wrote: On Tue, 20 May 2014 17:11:59 +1000 David Seikel onef...@gmail.com said: On Tue, 20 May 2014 15:50:54 +0900 Carsten Haitzler (The Rasterman) ras...@rasterman.com wrote: On Mon, 19 May 2014

Re: [E-devel] Elm window resize

2014-05-20 Thread ChunEon Park
naviframe set the min size with the top item content min size. -Regards, Hermet- -Original Message- From: David Seikelonef...@gmail.com To: enlightenment-devel@lists.sourceforge.net; Cc: Sent: 2014-05-20 (화) 16:11:59 Subject: Re: [E-devel] Elm

Re: [E-devel] Elm window resize

2014-05-20 Thread David Seikel
. -Regards, Hermet- -Original Message- From: David Seikelonef...@gmail.com To: enlightenment-devel@lists.sourceforge.net; Cc: Sent: 2014-05-20 (화) 16:11:59 Subject: Re: [E-devel] Elm window resize On Tue, 20 May 2014 15:50:54 +0900 Carsten Haitzler (The Rasterman

[E-devel] Elm window resize

2014-05-19 Thread Andrew Williams
Hi guys, After opening this task about indow sizes in elm not respecting the scale set: https://phab.enlightenment.org/T1263 I realised that these are all set through evas_object_resize which clearly cannot know about elm scaling. Would there be any objection to creating an elm_win_resize or

Re: [E-devel] Elm window resize

2014-05-19 Thread Daniel Juyung Seo
If you set the window resize object correctly it should work IMO. If you want to scale the window size manually according to the elementary scale factor, you need to call evas_object_resize(obj, elm_config_scale_get() * 100, elm_config_scale_get() * 50); By the way, is there any testable samples?