Index: src/groffstudio.lpi ================================================================== --- src/groffstudio.lpi +++ src/groffstudio.lpi @@ -87,12 +87,10 @@ - Index: src/unit1.lfm ================================================================== --- src/unit1.lfm +++ src/unit1.lfm @@ -7,11 +7,11 @@ ClientHeight = 692 ClientWidth = 847 DefaultMonitor = dmPrimary OnClose = FormClose OnCreate = FormCreate - LCLVersion = '3.0.0.3' + LCLVersion = '3.1.0.0' object MainStatusBar: TStatusBar Left = 0 Height = 18 Top = 674 Width = 847 @@ -225,16 +225,17 @@ Top = 0 Width = 801 Anchors = [akTop, akLeft, akRight, akBottom] Font.CharSet = 4 Font.Height = -13 + Font.Name = 'Andale Mono' Font.Pitch = fpFixed Font.Quality = fqCleartypeNatural ParentColor = False ParentFont = False TabOrder = 3 - Gutter.Width = 67 + Gutter.Width = 57 Gutter.MouseActions = <> RightGutter.Width = 0 RightGutter.MouseActions = <> Keystrokes = < item @@ -688,11 +689,11 @@ object SynGutterMarks1: TSynGutterMarks Width = 24 MouseActions = <> end object SynGutterLineNumber1: TSynGutterLineNumber - Width = 27 + Width = 17 MouseActions = <> MarkupInfo.Background = clBtnFace MarkupInfo.Foreground = clNone DigitCount = 2 ShowOnlyLineNumbersMultiplesOf = 1 Index: src/unit1.pas ================================================================== --- src/unit1.pas +++ src/unit1.pas @@ -139,13 +139,13 @@ HTTPClient: TFPHttpClient; {$ENDIF} begin // What's the current running groff version? {$IFDEF WINDOWS} - if RunCommand('cmd', ['/c', 'troff', '--version'], GroffOutputVersion) then + if RunCommand('cmd', ['/c', 'troff --version'], GroffOutputVersion) then {$ELSE} - if RunCommand('/bin/sh', ['-c', 'troff', '--version'], GroffOutputVersion) then + if RunCommand('/bin/sh', ['-c', 'troff --version'], GroffOutputVersion) then {$ENDIF} begin edtGroffInstalledVersion.Text := GroffOutputVersion; if pos('GNU', GroffOutputVersion) = 0 then ShowMessage('groffstudio thinks that your installed version of troff is not GNU troff.' + LineEnding +