r18842 by craig - #10267: Apply JLuc's patch to set text as the default search selection
scribus-commit
scribus-commit at lists.scribus.net
Tue Feb 25 21:32:59 UTC 2014
Author: craig
Date: Tue Feb 25 21:32:59 2014
New Revision: 18842
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=18842
Log:
#10267: Apply JLuc's patch to set text as the default search selection
Modified:
branches/Version14x/Scribus/scribus/search.cpp
Modified: branches/Version14x/Scribus/scribus/search.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=18842&path=/branches/Version14x/Scribus/scribus/search.cpp
==============================================================================
--- branches/Version14x/Scribus/scribus/search.cpp (original)
+++ branches/Version14x/Scribus/scribus/search.cpp Tue Feb 25 21:32:59 2014
@@ -997,7 +997,7 @@
SFont->setChecked(prefs->getBool("SFont", false));
SStyle->setChecked(prefs->getBool("SStyle", false));
SAlign->setChecked(prefs->getBool("SAlign", false));
- SText->setChecked(prefs->getBool("SText", false));
+ SText->setChecked(prefs->getBool("SText", true));
SEffect->setChecked(prefs->getBool("SEffect", false));
REffect->setChecked(prefs->getBool("REffect", false));
STextVal->setText(prefs->get("STextVal", ""));
@@ -1021,7 +1021,7 @@
RFont->setChecked(prefs->getBool("RFont", false));
RStyle->setChecked(prefs->getBool("RStyle", false));
RAlign->setChecked(prefs->getBool("RAlign", false));
- RText->setChecked(prefs->getBool("RText", false));
+ RText->setChecked(prefs->getBool("RText", true));
RTextVal->setText(prefs->get("RTextVal", ""));
tmp = prefs->getInt("RStyleVal", findParagraphStyle(Doc, Doc->currentStyle));
if (tmp < 0 || tmp >= RStyleVal->count())
More information about the scribus-commit
mailing list