From: Uwe Stöhr Date: Sun, 5 Nov 2017 12:39:09 +0000 (+0100) Subject: GuiDocument.cpp: change back alignment for column with package names X-Git-Tag: 2.3.1~133^2~17 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=91a15383f99eb0981b33c491021f27ff654f1a14;p=features.git GuiDocument.cpp: change back alignment for column with package names - as discussed in bug #10777 the first column should be left-aligned (cherry picked from commit 56670d73224e3bc2b80943b789fa2364d00a552d) --- diff --git a/src/frontends/qt4/GuiDocument.cpp b/src/frontends/qt4/GuiDocument.cpp index e063545d9d..7e40ff6cec 100644 --- a/src/frontends/qt4/GuiDocument.cpp +++ b/src/frontends/qt4/GuiDocument.cpp @@ -1252,8 +1252,7 @@ GuiDocument::GuiDocument(GuiView & lv) mathsModule->packagesTW->setCellWidget(i, 1, autoRB); mathsModule->packagesTW->setCellWidget(i, 2, alwaysRB); mathsModule->packagesTW->setCellWidget(i, 3, neverRB); - //center the table contents - pack->setTextAlignment(Qt::AlignHCenter); + //center the radio buttons autoRB->setStyleSheet("margin-left:50%; margin-right:50%;"); alwaysRB->setStyleSheet("margin-left:50%; margin-right:50%;"); neverRB->setStyleSheet("margin-left:50%; margin-right:50%;");