From 2d75167e4c82207d0380512de4757521eeade0ba Mon Sep 17 00:00:00 2001 From: gxalpha Date: Tue, 5 Apr 2022 01:52:20 +0200 Subject: [PATCH] UI: Truncate displayed file paths in the middle in Remux window --- UI/window-remux.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UI/window-remux.cpp b/UI/window-remux.cpp index a0dbcc543..81c00fc5d 100644 --- a/UI/window-remux.cpp +++ b/UI/window-remux.cpp @@ -672,6 +672,8 @@ OBSRemux::OBSRemux(const char *path, QWidget *parent, bool autoRemux_) RemuxEntryColumn::State, QHeaderView::ResizeMode::Fixed); ui->tableView->setEditTriggers( QAbstractItemView::EditTrigger::CurrentChanged); + ui->tableView->setTextElideMode(Qt::ElideMiddle); + ui->tableView->setWordWrap(false); installEventFilter(CreateShortcutFilter());