mirror of https://github.com/buggins/dlangui.git
Codestile, widget ordering in dmledit
This commit is contained in:
parent
a4f70afdc6
commit
d31b5b9f1c
|
@ -308,7 +308,8 @@ class EditFrame : AppFrame {
|
||||||
protected DMLSourceEdit _editor;
|
protected DMLSourceEdit _editor;
|
||||||
protected ScrollWidget _preview;
|
protected ScrollWidget _preview;
|
||||||
/// create app body widget
|
/// create app body widget
|
||||||
override protected Widget createBody() {
|
override protected Widget createBody()
|
||||||
|
{
|
||||||
|
|
||||||
DockHost dockHost = new DockHost();
|
DockHost dockHost = new DockHost();
|
||||||
|
|
||||||
|
@ -321,10 +322,10 @@ class EditFrame : AppFrame {
|
||||||
auto sla = new StringListAdapter();
|
auto sla = new StringListAdapter();
|
||||||
|
|
||||||
auto registeredWidgetList = getRegisteredWidgetsList();
|
auto registeredWidgetList = getRegisteredWidgetsList();
|
||||||
registeredWidgetList.sort!("a > b");
|
registeredWidgetList.sort!("a < b");
|
||||||
|
|
||||||
foreach(const ref widget; registeredWidgetList) {
|
|
||||||
|
|
||||||
|
foreach(const ref widget; registeredWidgetList)
|
||||||
|
{
|
||||||
auto propertyListAdapter = new StringListAdapter();
|
auto propertyListAdapter = new StringListAdapter();
|
||||||
if ( auto meta = findWidgetMetadata(widget) )
|
if ( auto meta = findWidgetMetadata(widget) )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue