1 Feb 07:33
r40696 - in lyx-devel/branches/BRANCH_2_0_X: . src/frontends/qt4
<spitz <at> lyx.org>
2012-02-01 06:33:52 GMT
2012-02-01 06:33:52 GMT
Author: spitz Date: Wed Feb 1 07:33:51 2012 New Revision: 40696 URL: http://www.lyx.org/trac/changeset/40696 Log: Fix bug #8013: updateDefaultFormat() checks the osFontsCB state, so the fonts UI needs to be set in advance of the output UI. Modified: lyx-devel/branches/BRANCH_2_0_X/src/frontends/qt4/GuiDocument.cpp lyx-devel/branches/BRANCH_2_0_X/status.20x Modified: lyx-devel/branches/BRANCH_2_0_X/src/frontends/qt4/GuiDocument.cpp ============================================================================== --- lyx-devel/branches/BRANCH_2_0_X/src/frontends/qt4/GuiDocument.cpp Tue Jan 31 22:15:53 2012 (r40695) +++ lyx-devel/branches/BRANCH_2_0_X/src/frontends/qt4/GuiDocument.cpp Wed Feb 1 07:33:51 2012 (r40696) @@ -2881,30 +2881,13 @@ InsetListingsParams(bp_.listings_params).separatedParams(); listingsModule->listingsED->setPlainText(toqstr(lstparams)); - // Output - // update combobox with formats - updateDefaultFormat(); - int index = outputModule->defaultFormatCO->findData(toqstr( - bp_.default_output_format)); - // set to default if format is not found - if (index == -1) - index = 0; - outputModule->defaultFormatCO->setCurrentIndex(index);(Continue reading)
RSS Feed