In many dialogs I see descriptions abbreviated by "..."
and even when there is a horizontal scrollbar it is not
possible to see the whole text without resizing the
complete dialog.

The "..." could be suppressed by these two lines of code,
done here for the Module entry of the Document dialog:

modulesModule->availableLV->header()->setResizeMode(QHeaderView::ResizeToContents);
modulesModule->availableLV->header()->setStretchLastSection(false);

Should we suppress the dots also at other similar places?

Peter
Index: src/frontends/qt4/GuiDocument.cpp
===================================================================
--- src/frontends/qt4/GuiDocument.cpp	(Revision 37657)
+++ src/frontends/qt4/GuiDocument.cpp	(Arbeitskopie)
@@ -1194,6 +1194,8 @@
 	// Modules
 	modulesModule = new UiWidget<Ui::ModulesUi>;
 	modulesModule->availableLV->header()->setVisible(false);
+	modulesModule->availableLV->header()->setResizeMode(QHeaderView::ResizeToContents);
+	modulesModule->availableLV->header()->setStretchLastSection(false);
 	selectionManager =
 		new ModuleSelectionManager(modulesModule->availableLV,
 			modulesModule->selectedLV,

Reply via email to