summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-02-20 16:53:40 -0800
committerGravatar Yuri Kunde Schlesner2017-02-26 17:22:04 -0800
commit1469b3212b7bbc320844e3ea747c995bf3437552 (patch)
tree95211fcca62686b086bb2f354ab2767936d1247a /src
parentQt: Increase status bar update interval to 2 seconds (diff)
downloadyuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar.gz
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar.xz
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.zip
Qt: Tweak status bar styling
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 003cfc839..e1661ca9a 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -109,6 +109,8 @@ void GMainWindow::InitializeWidgets() {
109 109
110 for (auto& label : {emu_speed_label, game_fps_label, emu_frametime_label}) { 110 for (auto& label : {emu_speed_label, game_fps_label, emu_frametime_label}) {
111 label->setVisible(false); 111 label->setVisible(false);
112 label->setFrameStyle(QFrame::NoFrame);
113 label->setContentsMargins(4, 0, 4, 0);
112 statusBar()->addPermanentWidget(label); 114 statusBar()->addPermanentWidget(label);
113 } 115 }
114 statusBar()->setVisible(true); 116 statusBar()->setVisible(true);