summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-21 01:53:40 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-27 02:22:04 +0100
commit1469b3212b7bbc320844e3ea747c995bf3437552 (patch)
tree95211fcca62686b086bb2f354ab2767936d1247a /src
parentQt: Increase status bar update interval to 2 seconds (diff)
downloadyuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar.gz
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar.bz2
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar.lz
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar.xz
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.tar.zst
yuzu-1469b3212b7bbc320844e3ea747c995bf3437552.zip
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() {
for (auto& label : {emu_speed_label, game_fps_label, emu_frametime_label}) {
label->setVisible(false);
+ label->setFrameStyle(QFrame::NoFrame);
+ label->setContentsMargins(4, 0, 4, 0);
statusBar()->addPermanentWidget(label);
}
statusBar()->setVisible(true);