]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.C
I reactivate the code to resize the InsetText on a resize event of the main
[lyx.git] / src / lyxrc.C
index 334259ea6d38bb6f72c6dda087c18d6bd65f17b4..95f463fe8fe3bb07b8364fed4280d48625e900be 100644 (file)
@@ -225,7 +225,7 @@ void LyXRC::setDefaults() {
        make_backup = true;
        backupdir_path.erase();
        exit_confirmation = true;
-       display_graphics = "mono";
+       display_graphics = "color";
        display_shortcuts = true;
        // Spellchecker settings:
 #ifdef USE_PSPELL      
@@ -1246,7 +1246,7 @@ void LyXRC::output(ostream & os) const
                   << "#\n\n";
                
        case RC_SET_COLOR:
-               for (int i = 0; i < LColor::ignore; ++i ) {
+               for (int i = 0; i < LColor::ignore; ++i) {
                        LColor::color lc = static_cast<LColor::color>(i);
                        
                        string const col(lcolor.getX11Name(lc));
@@ -1444,7 +1444,7 @@ void LyXRC::output(ostream & os) const
 #ifdef USE_PSPELL
        case RC_USE_PSPELL:
                if (use_pspell != system_lyxrc.use_pspell) {
-                       os << "\\use_pspell \"" << use_pspell << "\"\n";
+                       os << "\\use_pspell " << tostr(use_pspell) << "\n";
                }
 #endif
        case RC_SPELL_COMMAND:
@@ -1897,7 +1897,7 @@ string const LyXRC::getDescription(LyXRCTags tag)
                break;
                
        case RC_SCREEN_FONT_SCALABLE:
-               str = N_("Allow the use of scalable screen fonts? If false, LyX will use the closest existing size for a match. Use this if the scalable fonts look bad and you have many fixed size fonts.");
+               str = N_("Allow bitmap fonts to be resized. If you are using a bitmap font, selecting this option may make some fonts look blocky in LyX. Deselecting this option makes LyX use the nearest bitmap font size available, instead of scaling.");
                break;
                
        case RC_CHKTEX_COMMAND: