Skip to content

Commit

Permalink
Versione 4.1.10
Browse files Browse the repository at this point in the history
- Inserita routine di fall back in caso icone  posizionate in /usr/share/dnfdrake anzichè /usr/share/dnfdrake/icons/

-Correzione bug selezione "Your choice: ....." ora è possibile inserire la selezione
  • Loading branch information
astrgl committed Apr 23, 2024
1 parent b6c5e73 commit 7d3df12
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 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.9
Version=4.1.10
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.9")
Text = ("DnfDrake 4.1.10")
}
}
}
10 changes: 8 additions & 2 deletions .src/Fmain.class
Original file line number Diff line number Diff line change
Expand Up @@ -2623,8 +2623,14 @@ Private Sub DSTUPDATE()
End

Public Sub LOADICONS()

BTNAUTOREMOVE.Picture = Picture.Load($PATHICONS & "trash" & $THEMESSUFFIX)
'GESTIONE ERRORE PER ASSENZA ICONE A CAUSA DI SPEC ERRATO IN OPENMANDRIVA ***********
Try BTNAUTOREMOVE.Picture = Picture.Load($PATHICONS & "trash" & $THEMESSUFFIX)
If Error Then
$PATHICONS = "/usr/share/dnfdrake/"
BTNAUTOREMOVE.Picture = Picture.Load($PATHICONS & "trash" & $THEMESSUFFIX)
Endif
'**************************************************************************************
'BTNAUTOREMOVE.Picture = Picture.Load($PATHICONS & "trash" & $THEMESSUFFIX)
PICEXCLUDE.Picture = Picture.Load($PATHICONS & "lock" & $THEMESSUFFIX)
BTNRESIZE.Picture = Picture.Load($PATHICONS & "restore" & $THEMESSUFFIX)
BTNFULLSCREEN.Picture = Picture.Load($PATHICONS & "fullscreen" & $THEMESSUFFIX)
Expand Down

0 comments on commit 7d3df12

Please sign in to comment.