aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/ShiftOSDesktop.vb
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-03-22 10:45:19 -0400
committerTheUltimateHacker <[email protected]>2015-03-22 10:45:19 -0400
commitd556f57a1fd140362d19baea107d98524427a45e (patch)
tree22848514fd9e34beece0a49c24d237e488464de0 /ShiftOS/ShiftOSDesktop.vb
parenta276b027fb14540aaae66b1e0f42706174b77938 (diff)
downloadshiftos-d556f57a1fd140362d19baea107d98524427a45e.tar.gz
shiftos-d556f57a1fd140362d19baea107d98524427a45e.tar.bz2
shiftos-d556f57a1fd140362d19baea107d98524427a45e.zip
#1 - File Skimmer bug fix + Fullscreen Login Screen
Fixed a bug with the File Skimmer, as well as adding a FullScreen Login Screen test that can be utilized using the "test fullscreen login" terminal command. There's also a "test fullscreen login customizer" command to test the Customization Options for the login screen, though I haven't even gotten close to completing that. I've also referenced another DLL, one that I made called "MichaelsMovableControlSuite.dll" that contains movable variations of Windows Forms Controls. By movable, I mean that at run-time, the user can drag these controls around, however some functions (such as the ability to type in a MovableTextBox) have been disabled. These controls are used for the Login Screen customizer.
Diffstat (limited to 'ShiftOS/ShiftOSDesktop.vb')
-rw-r--r--ShiftOS/ShiftOSDesktop.vb27
1 files changed, 17 insertions, 10 deletions
diff --git a/ShiftOS/ShiftOSDesktop.vb b/ShiftOS/ShiftOSDesktop.vb
index 6bb1267..447d01a 100644
--- a/ShiftOS/ShiftOSDesktop.vb
+++ b/ShiftOS/ShiftOSDesktop.vb
@@ -1620,17 +1620,24 @@
For Each Control In MyBase.Controls
Control.visible = False
Next
- loginform.ShowDialog()
+ If Skins.autologin = False Then
+ If Skins.fullScreen = False Then
+ loginform.ShowDialog()
+ Else
+ FullScreenLogin.ShowDialog()
+ End If
+ End If
- For Each Control In MyBase.Controls
- Control.visible = True
- hideStart()
- Next
- Try
- Helper.playSound(Paths.sounddir & "startup.wav", AudioPlayMode.WaitToComplete)
- Catch ex As Exception
- 'Do nothing -- Haven't found a good startup sound
- End Try
+
+ For Each Control In MyBase.Controls
+ Control.visible = True
+ hideStart()
+ Next
+ Try
+ Helper.playSound(Paths.sounddir & "startup.wav", AudioPlayMode.WaitToComplete)
+ Catch ex As Exception
+ 'Do nothing -- Haven't found a good startup sound
+ End Try
End Sub