fix admin config available for normal users

This commit is contained in:
Jonathan Jenne 2020-06-03 15:37:54 +02:00
parent b15eecb3cc
commit 3bca4be83f

View File

@ -321,6 +321,8 @@ Public Class frmStart
End If End If
If USER_IS_ADMIN = True Then If USER_IS_ADMIN = True Then
btnAdminConfig.Visible = True btnAdminConfig.Visible = True
Else
btnAdminConfig.Visible = False
End If End If
TimerRefresh.Start() TimerRefresh.Start()
End Sub End Sub