From 22dbf316dfe868b9d2f0c7af3df8a10ba0039396 Mon Sep 17 00:00:00 2001 From: Clayton Groeneveld Date: Tue, 31 May 2022 04:30:03 -0500 Subject: [PATCH] UI: Truncate push-to-* labels The labels for the push-to-mute / push-to-talk hotkeys were never truncated. --- UI/window-basic-settings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/window-basic-settings.cpp b/UI/window-basic-settings.cpp index 57f5eeb10..e99707fca 100644 --- a/UI/window-basic-settings.cpp +++ b/UI/window-basic-settings.cpp @@ -2479,6 +2479,7 @@ void OBSBasicSettings::LoadAudioSources() pttCB, pttSB); auto label = new OBSSourceLabel(source); + TruncateLabel(label, label->text()); label->setMinimumSize(QSize(170, 0)); label->setAlignment(Qt::AlignRight | Qt::AlignTrailing | Qt::AlignVCenter);