[E-devel] edje align box to bottom.

2015-04-26 Thread Wolfgang Morawetz
Hi,
i have some trouble to align the userslist.box to the bottom.
Git source is:
https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
It is allways centered (screenshot:
http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg )
The edc part is at line 339:

part { name: userslist; type: SPACER;
   description { state: default 0.0;
  rel1  {
 to: user;
 relative: 1.0 0.0;
 offset: 24 0;
  }
  rel2 {
 to: user;
 relative: 1.0 (1.0 - 1.0);
  }
   }
   description { state: visible 0.0;
  rel1  {
 to: user;
 relative: 1.0 0.0;
 offset: 24 0;
  }
  rel2 {
 to: user;
 relative: 2.0 1.0;
  }
   }
   part { name: userslist.box; /* API */
  type: BOX;
  description { state: default 0.0;
 box {
layout: horizontal;
align: 0.0 0.0;
padding: 24 0;
 }
  }
   }

Thanks
wfx
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] xwayland and enlightenment question

2015-04-26 Thread nerdopolis
Hi.

I have a quick question about enlightenment and Xwayland support. When it is 
merged into Enlightenment will it be incompatible with the 
--enable-wayland-only flag when compiling Enlightenment?

Thanks

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Work items for 1.14 stabilization phase

2015-04-26 Thread ChunEon Park
https://phab.enlightenment.org/T2262
was already fixed in 96c6cda2c5e803b70cf75c985337c457e383737c.


-Regards, Hermet-

-Original Message-
From: Stefan Schmidtste...@datenfreihafen.org 
To: enlightenment-devel@lists.sourceforge.net; 
Cc: 
Sent: 2015-04-23 (목) 21:35:54
Subject: Re: [E-devel] Work items for 1.14 stabilization phase
 
Hello.

Here comes another update. Thanks for everyone involved. Be it reporting
or fixing.

Phab issues:
https://phab.enlightenment.org/T2285 Edje_CC does not handle nbsp
properly on arm / remove nbsp in whitespace from flipselector.edc
causing build issues with edje-cc
https://phab.enlightenment.org/T1973 window INLINE_IMAGE cannot be used
on its own canvas
https://phab.enlightenment.org/T2262 Spinner widgets bugs out when Enter
key is pressed in the edit entry
https://phab.enlightenment.org/T2088 Elementary Entry screams about
non-shareable string
https://phab.enlightenment.org/T2084 Genlist segs
https://phab.enlightenment.org/T2336 Enlightenment crash with non
standard profile (Probably Tasks Related)

Coverity issues (only the ones with high impact on efl and elm)
High mostly covers leaks and memory errors.
A list with all of them should be behind this link:
https://scan6.coverity.com:8443/reports.htm#v17029/p10304

CID 1294558 eolian_cxx
CID 1294210 ector
CID 1288924 emile
CID 1288923 emile

There are more medium and low level coverity issues left if you want to
have a look.

regards
Stefan Schmidt


--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15utm_medium=emailutm_campaign=VA_SF
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje align box to bottom.

2015-04-26 Thread The Rasterman
On Sun, 26 Apr 2015 20:29:38 +0200 Wolfgang Morawetz
wolfgang.moraw...@gmail.com said:

align: 0.5 0.5;

is the default in every description - try 0.5 1.0 for bottom aligned -
depending what you want to align to bottom... :)

 Hi,
 i have some trouble to align the userslist.box to the bottom.
 Git source is:
 https://github.com/wfx/enter/blob/master/data/themes/enter/main.edc
 It is allways centered (screenshot:
 http://www.enlightenment.org/ss/e-553d22aee06ca9.61403495.jpg )
 The edc part is at line 339:
 
 part { name: userslist; type: SPACER;
description { state: default 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 1.0 (1.0 - 1.0);
   }
}
description { state: visible 0.0;
   rel1  {
  to: user;
  relative: 1.0 0.0;
  offset: 24 0;
   }
   rel2 {
  to: user;
  relative: 2.0 1.0;
   }
}
part { name: userslist.box; /* API */
   type: BOX;
   description { state: default 0.0;
  box {
 layout: horizontal;
 align: 0.0 0.0;
 padding: 24 0;
  }
   }
}
 
 Thanks
 wfx
 --
 One dashboard for servers and applications across Physical-Virtual-Cloud 
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel