EgtDOORCreator 1.9c5 :

- il bottone Delete nella pagina HardwareManager è configurabile da file Config.ini "DisableDeleteCommandHM=0".
This commit is contained in:
Nicola Pievani
2018-03-20 15:18:45 +00:00
parent 5e23a76071
commit 01d1d6fdba
5 changed files with 24 additions and 3 deletions
+9
View File
@@ -35,6 +35,7 @@ Friend Module OptionModule
Friend m_SmartHelp As Boolean = False
Friend m_DisableHM As Boolean = False
Friend m_DisableDeleteCommandHM As Boolean = False
Friend m_Width As String
Friend m_Height As String
@@ -208,6 +209,14 @@ Friend Module OptionModule
m_DisableHM = False
End If
Dim nDisableDeleteCommandHM As Integer = 1
nDisableDeleteCommandHM = GetMainPrivateProfileInt(S_GENERAL, K_DISABLEDELETECOMMANDHM, 1)
If nDisableDeleteCommandHM = 0 Then
m_DisableDeleteCommandHM = True
Else
m_DisableDeleteCommandHM = False
End If
' leggo il tipo di Bevel selezionato
Dim BevelUp As Visibility
DefaultGetPrivateProfilesBevel(S_EDGE, K_BEVELU_INI, BevelUp)