diff options
author | Linus Groh <mail@linusgroh.de> | 2021-01-17 08:15:36 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-17 08:43:46 +0100 |
commit | d64d2ff07b55ba32a9a38eb08178a8287beff6a8 (patch) | |
tree | c0827bbb76e9ded8e327ddd9babad781db2de52a /Userland | |
parent | 2bc9726e3c83cc015d5f667452244a74550829a7 (diff) | |
download | serenity-d64d2ff07b55ba32a9a38eb08178a8287beff6a8.zip |
SpaceAnalyzer: Change tabs to spaces in GML file
This is a four-spaces-for-indentation project! :^)
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/SpaceAnalyzer/SpaceAnalyzer.gml | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Userland/Applications/SpaceAnalyzer/SpaceAnalyzer.gml b/Userland/Applications/SpaceAnalyzer/SpaceAnalyzer.gml index a4a3363c6a..5d9153f669 100644 --- a/Userland/Applications/SpaceAnalyzer/SpaceAnalyzer.gml +++ b/Userland/Applications/SpaceAnalyzer/SpaceAnalyzer.gml @@ -1,20 +1,20 @@ @GUI::Widget { - layout: @GUI::VerticalBoxLayout { - spacing: 0 - } - - @GUI::ToolBarContainer { - @GUI::BreadcrumbBar { - fixed_height: 25 - name: "breadcrumb_bar" - } - } - - @SpaceAnalyzer::TreeMapWidget { - name: "tree_map" - } - - @GUI::StatusBar { - name: "status_bar" - } + layout: @GUI::VerticalBoxLayout { + spacing: 0 + } + + @GUI::ToolBarContainer { + @GUI::BreadcrumbBar { + fixed_height: 25 + name: "breadcrumb_bar" + } + } + + @SpaceAnalyzer::TreeMapWidget { + name: "tree_map" + } + + @GUI::StatusBar { + name: "status_bar" + } } |