Added show line endings option.

Fixed monospace font command.
This commit is contained in:
Martín Lucas Golini
2023-01-20 02:30:04 -03:00
parent 4edfa15e52
commit fb502ab8ae
7 changed files with 54 additions and 3 deletions

View File

@@ -223,8 +223,7 @@ class App : public UICodeEditorSplitter::Client {
t.setCommand( "terminal-font-size", [&] { setTerminalFontSize(); } );
t.setCommand( "ui-font-size", [&] { setUIFontSize(); } );
t.setCommand( "serif-font", [&] { openFontDialog( mConfig.ui.serifFont, false ); } );
t.setCommand( "monospace-font",
[&] { openFontDialog( mConfig.ui.monospaceFont, false ); } );
t.setCommand( "monospace-font", [&] { openFontDialog( mConfig.ui.monospaceFont, true ); } );
t.setCommand( "terminal-font", [&] { openFontDialog( mConfig.ui.terminalFont, false ); } );
t.setCommand( "fallback-font", [&] { openFontDialog( mConfig.ui.fallbackFont, false ); } );
mSplitter->registerSplitterCommands( t );