diff --git a/client/web/src/components/window/MainWindow.vue b/client/web/src/components/window/MainWindow.vue index e96a4faed..899eeae91 100644 --- a/client/web/src/components/window/MainWindow.vue +++ b/client/web/src/components/window/MainWindow.vue @@ -6,8 +6,8 @@ - - + + @@ -27,7 +27,7 @@ height: 100%; } -.footer-bar { +.status-bar { height: 24px; flex: 0 0 auto; } @@ -39,7 +39,7 @@ import LayoutRow from "../layout/LayoutRow.vue"; import LayoutCol from "../layout/LayoutCol.vue"; import PanelArea from "../panel-system/PanelArea.vue"; import TitleBar from "./title-bar/TitleBar.vue"; -import FooterBar from "./footer-bar/FooterBar.vue"; +import StatusBar from "./status-bar/StatusBar.vue"; export enum ApplicationPlatform { "Windows" = "Windows", @@ -54,7 +54,7 @@ export default defineComponent({ LayoutCol, TitleBar, PanelArea, - FooterBar, + StatusBar, }, data() { return { diff --git a/client/web/src/components/window/footer-bar/InputHint.vue b/client/web/src/components/window/status-bar/InputHint.vue similarity index 100% rename from client/web/src/components/window/footer-bar/InputHint.vue rename to client/web/src/components/window/status-bar/InputHint.vue diff --git a/client/web/src/components/window/footer-bar/FooterBar.vue b/client/web/src/components/window/status-bar/StatusBar.vue similarity index 82% rename from client/web/src/components/window/footer-bar/FooterBar.vue rename to client/web/src/components/window/status-bar/StatusBar.vue index a05fcaa1e..0ca250fcb 100644 --- a/client/web/src/components/window/footer-bar/FooterBar.vue +++ b/client/web/src/components/window/status-bar/StatusBar.vue @@ -1,5 +1,5 @@