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 ScrollWidget _preview;
|
||||
/// create app body widget
|
||||
override protected Widget createBody() {
|
||||
override protected Widget createBody()
|
||||
{
|
||||
|
||||
DockHost dockHost = new DockHost();
|
||||
|
||||
|
@ -321,10 +322,10 @@ class EditFrame : AppFrame {
|
|||
auto sla = new StringListAdapter();
|
||||
|
||||
auto registeredWidgetList = getRegisteredWidgetsList();
|
||||
registeredWidgetList.sort!("a > b");
|
||||
|
||||
foreach(const ref widget; registeredWidgetList) {
|
||||
registeredWidgetList.sort!("a < b");
|
||||
|
||||
foreach(const ref widget; registeredWidgetList)
|
||||
{
|
||||
auto propertyListAdapter = new StringListAdapter();
|
||||
if ( auto meta = findWidgetMetadata(widget) )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue