@@ -178,7 +178,7 @@ public UICatalogTopLevel ()
178178 "About UI Catalog" , ( ) => MessageBox . Query ( "About UI Catalog" , _aboutMessage . ToString ( ) , "_Ok" ) , null , null , Key . CtrlMask | Key . A ) ,
179179 } ) ,
180180 } ) ;
181-
181+
182182 Capslock = new StatusItem ( Key . CharMask , "Caps" , null ) ;
183183 Numlock = new StatusItem ( Key . CharMask , "Num" , null ) ;
184184 Scrolllock = new StatusItem ( Key . CharMask , "Scroll" , null ) ;
@@ -189,9 +189,6 @@ public UICatalogTopLevel ()
189189 Visible = true ,
190190 } ;
191191 StatusBar . Items = new StatusItem [ ] {
192- Capslock ,
193- Numlock ,
194- Scrolllock ,
195192 new StatusItem ( Key . Q | Key . CtrlMask , "~CTRL-Q~ Quit" , ( ) => {
196193 if ( _selectedScenario is null ) {
197194 // This causes GetScenarioToRun to return null
@@ -201,7 +198,7 @@ public UICatalogTopLevel ()
201198 _selectedScenario . RequestStop ( ) ;
202199 }
203200 } ) ,
204- new StatusItem ( Key . F10 , "~F10~ Hide/Show Status Bar" , ( ) => {
201+ new StatusItem ( Key . F10 , "~F10~ Status Bar" , ( ) => {
205202 StatusBar . Visible = ! StatusBar . Visible ;
206203 LeftPane . Height = Dim . Fill ( StatusBar . Visible ? 1 : 0 ) ;
207204 RightPane . Height = Dim . Fill ( StatusBar . Visible ? 1 : 0 ) ;
@@ -284,7 +281,7 @@ void LoadedHandler ()
284281 miIsMouseDisabled . Checked = Application . IsMouseDisabled ;
285282 miHeightAsBuffer . Checked = Application . HeightAsBuffer ;
286283 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 } ";
288285
289286 if ( _selectedScenario != null ) {
290287 _selectedScenario = null ;
0 commit comments