Codestile, widget ordering in dmledit

This commit is contained in:
Grim Maple 2023-01-09 21:01:57 +03:00
parent a4f70afdc6
commit d31b5b9f1c
1 changed files with 30 additions and 29 deletions

View File

@ -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) )
{