@@ -178,7 +178,7 @@ public UICatalogTopLevel ()
178
178
"About UI Catalog" , ( ) => MessageBox . Query ( "About UI Catalog" , _aboutMessage . ToString ( ) , "_Ok" ) , null , null , Key . CtrlMask | Key . A ) ,
179
179
} ) ,
180
180
} ) ;
181
-
181
+
182
182
Capslock = new StatusItem ( Key . CharMask , "Caps" , null ) ;
183
183
Numlock = new StatusItem ( Key . CharMask , "Num" , null ) ;
184
184
Scrolllock = new StatusItem ( Key . CharMask , "Scroll" , null ) ;
@@ -189,9 +189,6 @@ public UICatalogTopLevel ()
189
189
Visible = true ,
190
190
} ;
191
191
StatusBar . Items = new StatusItem [ ] {
192
- Capslock ,
193
- Numlock ,
194
- Scrolllock ,
195
192
new StatusItem ( Key . Q | Key . CtrlMask , "~CTRL-Q~ Quit" , ( ) => {
196
193
if ( _selectedScenario is null ) {
197
194
// This causes GetScenarioToRun to return null
@@ -201,7 +198,7 @@ public UICatalogTopLevel ()
201
198
_selectedScenario . RequestStop ( ) ;
202
199
}
203
200
} ) ,
204
- new StatusItem ( Key . F10 , "~F10~ Hide/Show Status Bar" , ( ) => {
201
+ new StatusItem ( Key . F10 , "~F10~ Status Bar" , ( ) => {
205
202
StatusBar . Visible = ! StatusBar . Visible ;
206
203
LeftPane . Height = Dim . Fill ( StatusBar . Visible ? 1 : 0 ) ;
207
204
RightPane . Height = Dim . Fill ( StatusBar . Visible ? 1 : 0 ) ;
@@ -284,7 +281,7 @@ void LoadedHandler ()
284
281
miIsMouseDisabled . Checked = Application . IsMouseDisabled ;
285
282
miHeightAsBuffer . Checked = Application . HeightAsBuffer ;
286
283
DriverName . Title = $ "Driver: { Driver . GetType ( ) . Name } ";
287
- OS . Title = $ "OS: { Microsoft . DotNet . PlatformAbstractions . RuntimeEnvironment . OperatingSystem } ";
284
+ OS . Title = $ "OS: { Microsoft . DotNet . PlatformAbstractions . RuntimeEnvironment . OperatingSystem } { Microsoft . DotNet . PlatformAbstractions . RuntimeEnvironment . OperatingSystemVersion } ";
288
285
289
286
if ( _selectedScenario != null ) {
290
287
_selectedScenario = null ;
0 commit comments