Skip to content

Commit 886cc28

Browse files
committed
Merge pull request #69 from charlesrgould/hotfix/installer-terminal-emulator-captions
installer: shorten text wrap for terminal captions
2 parents 483da47 + 363e041 commit 886cc28

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

installer/install.iss.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -864,8 +864,8 @@ begin
864864
Parent:=BashTerminalPage.Surface;
865865
Caption:=
866866
'Git Bash will use MinTTY as terminal emulator, which sports a resizable window,' + #13 +
867-
'non-rectangular selections and a Unicode font. Windows console programs (such as' + #13 +
868-
'an interactive Python console) must be launched via `winpty` to work in MinTTY.';
867+
'non-rectangular selections and a Unicode font. Windows console programs (such' + #13 +
868+
'as interactive Python) must be launched via `winpty` to work in MinTTY.';
869869
Left:=ScaleX(28);
870870
Top:=ScaleY(32);
871871
Width:=ScaleX(405);
@@ -890,10 +890,10 @@ begin
890890
Parent:=BashTerminalPage.Surface;
891891
Caption:=
892892
'Git will use the default console window of Windows ("cmd.exe"), which works well' + #13 +
893-
'with Win32 console programs such as interactive Python or node.js, but the window' + #13 +
894-
'is not freely resizable, allows only rectangular text selections, has a very' + #13 +
895-
'limited default scroll-back, and needs to be configured to us a Unicode font in' + #13 +
896-
'order to display non-ASCII characters correctly.';
893+
'with Win32 console programs such as interactive Python or node.js, but the' + #13 +
894+
'window is not freely resizable, allows only rectangular text selections, has a' + #13 +
895+
'very limited default scroll-back, and needs to be configured to use a Unicode' + #13 +
896+
'font in order to display non-ASCII characters correctly.';
897897
Left:=ScaleX(28);
898898
Top:=ScaleY(104);
899899
Width:=ScaleX(405);

0 commit comments

Comments
 (0)