Skip to content

Commit

Permalink
Versione 4.1.9
Browse files Browse the repository at this point in the history
-Correzione bug selezione "Your choice: ....." ora è possibile inserire la selezione
  • Loading branch information
astrgl committed Apr 18, 2024
1 parent d77716b commit b6c5e73
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .project
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Title=DnfDrake
Startup=Fmain
Icon=dnfdrake.svg
Version=4.1.8
Version=4.1.9
Component=gb.image
Component=gb.gui
Component=gb.form
Expand Down
2 changes: 1 addition & 1 deletion .src/FABOUT.form
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
MoveScaled(0,0,51,5)
Font = Font["+7"]
Alignment = Align.Center
Text = ("DnfDrake 4.1.8")
Text = ("DnfDrake 4.1.9")
}
}
}
16 changes: 11 additions & 5 deletions .src/Fmain.class
Original file line number Diff line number Diff line change
Expand Up @@ -2828,19 +2828,25 @@ Public Sub SELECTIONVIEW()
LBLSELECTION.Visible = True
BTNOKSELECTION.Visible = True
BTNANNULLASELECTION.Visible = True
If BTNOKSELECTION.Enabled = False Then
BTNOKSELECTION.Enabled = True
Endif
If BTNANNULLASELECTION.Enabled = False Then
BTNANNULLASELECTION.Enabled = True
If Fmain.Enabled = False Then
Fmain.Enabled = True
Endif
' If BTNOKSELECTION.Enabled = False Then
' BTNOKSELECTION.Enabled = True
' Endif
' If BTNANNULLASELECTION.Enabled = False Then
' BTNANNULLASELECTION.Enabled = True
' Endif
TXTSELECTION.SetFocus
Else
TXTSELECTION.Visible = False
LBLTXTSELECTION.Visible = False
LBLSELECTION.Visible = False
BTNOKSELECTION.Visible = False
BTNANNULLASELECTION.Visible = False
If Fmain.Enabled = True And If FRUN.Visible = True Then
Fmain.Enabled = False
Endif
Endif


Expand Down

0 comments on commit b6c5e73

Please sign in to comment.