Sort setting key names in the inspect tree view.

This commit is contained in:
Martynas Mickevicius 2014-05-07 14:32:10 +02:00
parent aa4ee809e5
commit f11d3dbce4
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ case class SettingGraph(name: String,
} getOrElse { "" }
def dependsAscii: String = Graph.toAscii(this,
(x: SettingGraph) => x.depends.toSeq,
(x: SettingGraph) => x.depends.toSeq.sortBy(_.name),
(x: SettingGraph) => "%s = %s" format (x.definedIn getOrElse { "" }, x.dataString))
}