View Single Post
  #11  
Old 18-08-2025, 08:03
PHM2D's Avatar
PHM2D PHM2D is offline
Registered User
 
Join Date: Mar 2024
Location: Area 51
Posts: 9
Thanks: 6
Thanked 5 Times in 3 Posts
PHM2D is on a distinguished road
Compact Mode Components Bug

I think I found a bug for the components page when using compact mode (Hotfix 8).
This bug makes the Start Menu Checkbox stay visible on components page when using compact mode.


FIX:

in this section:
Code:
ComponentsPageVisible := (not ComponentsPageVisible);
we should add
Code:
StartMenuCB.Visible
under the
Code:
#if !UpdateMode
as well so it would look like this:
Code:
      #if !UpdateMode
        IconsCB.Visible := (not ComponentsPageVisible);
        StartMenuCB.Visible := (not ComponentsPageVisible);
        UnInstallCB.Visible := (not ComponentsPageVisible);
      #endif
the same should be done for the tasks' page.
__________________
Built with hustle, crowned with success.
Reply With Quote
The Following User Says Thank You to PHM2D For This Useful Post:
KaktoR (18-08-2025)