Msg/File scan settings now show in one column just like the message/file base selection (if configured)
This commit is contained in:
parent
5a3ae15b2a
commit
90552c453e
|
@ -4515,3 +4515,9 @@
|
||||||
Since the space key may need to be used in a search string, the hotkey
|
Since the space key may need to be used in a search string, the hotkey
|
||||||
used to mark items in a listbox has changed from the SPACE key to the TAB
|
used to mark items in a listbox has changed from the SPACE key to the TAB
|
||||||
key.
|
key.
|
||||||
|
|
||||||
|
+ If Message base list columns is set to 1, the toggle newscan and qwkscan
|
||||||
|
message base lists will also now be 1 column.
|
||||||
|
|
||||||
|
+ If file base list columns is set to 1, the toggle new scan list will now
|
||||||
|
also be shown in a single list.
|
||||||
|
|
|
@ -793,10 +793,10 @@ Var
|
||||||
Session.io.PromptInfo[3] := Session.io.OutYN(FScan.NewScan > 0);
|
Session.io.PromptInfo[3] := Session.io.OutYN(FScan.NewScan > 0);
|
||||||
Session.io.OutFull (Session.GetPrompt(201));
|
Session.io.OutFull (Session.GetPrompt(201));
|
||||||
|
|
||||||
If (Total MOD 2 = 0) And (Total > 0) Then Session.io.OutRawLn('');
|
If (Total MOD Config.FColumns = 0) And (Total > 0) Then Session.io.OutRawLn('');
|
||||||
End;
|
End;
|
||||||
|
|
||||||
If EOF(FBaseFile) and (Total MOD 2 <> 0) Then Session.io.OutRawLn('');
|
If EOF(FBaseFile) and (Config.FColumns MOD 2 <> 0) Then Session.io.OutRawLn('');
|
||||||
|
|
||||||
If (Session.io.PausePtr = Session.User.ThisUser.ScreenSize) and (Session.io.AllowPause) Then
|
If (Session.io.PausePtr = Session.User.ThisUser.ScreenSize) and (Session.io.AllowPause) Then
|
||||||
Case Session.io.MorePrompt of
|
Case Session.io.MorePrompt of
|
||||||
|
|
|
@ -515,10 +515,10 @@ Var
|
||||||
|
|
||||||
Session.io.OutFull (Session.GetPrompt(93));
|
Session.io.OutFull (Session.GetPrompt(93));
|
||||||
|
|
||||||
If (Total MOD 2 = 0) And (Total > 0) Then Session.io.OutRawLn('');
|
If (Total MOD Config.MColumns = 0) And (Total > 0) Then Session.io.OutRawLn('');
|
||||||
End;
|
End;
|
||||||
|
|
||||||
If EOF(MBaseFile) and (Total MOD 2 <> 0) Then Session.io.OutRawLn('');
|
If EOF(MBaseFile) and (Total MOD Config.MColumns <> 0) Then Session.io.OutRawLn('');
|
||||||
|
|
||||||
If (Session.io.PausePtr = Session.User.ThisUser.ScreenSize) and (Session.io.AllowPause) Then
|
If (Session.io.PausePtr = Session.User.ThisUser.ScreenSize) and (Session.io.AllowPause) Then
|
||||||
Case Session.io.MorePrompt of
|
Case Session.io.MorePrompt of
|
||||||
|
|
Loading…
Reference in New Issue