diff options
| author | 2020-01-29 00:02:28 +0100 | |
|---|---|---|
| committer | 2020-01-29 00:02:28 +0100 | |
| commit | 6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9 (patch) | |
| tree | 5d0c46e912db60ada650d0583482617920a34b42 | |
| parent | GUI: Togglable graphics settings buttons in status bar (diff) | |
| download | yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar.gz yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar.xz yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.zip | |
minor corrections
| -rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 135adde06..a32de5ea3 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -457,7 +457,7 @@ void GMainWindow::InitializeWidgets() { | |||
| 457 | message_label->setFrameStyle(QFrame::NoFrame); | 457 | message_label->setFrameStyle(QFrame::NoFrame); |
| 458 | message_label->setContentsMargins(4, 0, 4, 0); | 458 | message_label->setContentsMargins(4, 0, 4, 0); |
| 459 | message_label->setAlignment(Qt::AlignLeft); | 459 | message_label->setAlignment(Qt::AlignLeft); |
| 460 | statusBar()->addPermanentWidget(message_label, 01); | 460 | statusBar()->addPermanentWidget(message_label, 1); |
| 461 | 461 | ||
| 462 | emu_speed_label = new QLabel(); | 462 | emu_speed_label = new QLabel(); |
| 463 | emu_speed_label->setToolTip( | 463 | emu_speed_label->setToolTip( |
| @@ -1911,7 +1911,7 @@ void GMainWindow::OnConfigure() { | |||
| 1911 | async_status_button->setChecked(Settings::values.use_asynchronous_gpu_emulation); | 1911 | async_status_button->setChecked(Settings::values.use_asynchronous_gpu_emulation); |
| 1912 | #ifdef HAS_VULKAN | 1912 | #ifdef HAS_VULKAN |
| 1913 | renderer_status_button->setChecked( | 1913 | renderer_status_button->setChecked( |
| 1914 | Settings::values.renderer_backend == Settings::RendererBackend::Vulkan ? true : false); | 1914 | Settings::values.renderer_backend == Settings::RendererBackend::Vulkan); |
| 1915 | #endif | 1915 | #endif |
| 1916 | } | 1916 | } |
| 1917 | 1917 | ||