Jim Coyne
Kilo Patron
Part of the Tips 'N Tricks" series.

 

This may not be as helpful now with the new "Next Experience" UI, but thought I'd share it anyways for those still using UI16 and the "UI16 Developer Patch" from James Neale.

 

Often, when switching between Update Sets, I'll want to open up that newly selected Update Set record.  Unfortunately, when selecting a different Update Set, an info message appears alerting you of the change, blocking most of the Update Set picker and the icon beside the picker.  You can click on the icon as a part of it appears just above the message, but the "View Current" drop-down menu is obscured, so it cannot be selected:

 

JimCoyne_0-1666936045094.png

 

OK, I can click on the "X" to close the message and then select the menu, but I'll admit, I'm lazy and always trying to minimize steps.  So I've modified the "snd_ui16_developer_patch_menus" UI Script to add 4 fake menu items at the top, pushing down the other menu items:

 

JimCoyne_2-1666938279347.png

 

Now the "View Current" menu item is visible and clickable without getting rid of the info message:

 

JimCoyne_3-1666938395176.png

 

So now I save myself 3 steps  🎉  🤓   I would always click on the icon right after selecting the Update Set out of habit, shake my fist at the screen, click on the "X" to get rid of the message and then click on the icon once again.

 

It's a simple change.  Just add the following code bit to the "update_set" function in the UI Script:

 

     {
        name: '-'
     },
     {
        name: '-'
     },
     {
        name: '-'
     },
     {
        name: '-'
     },

 

The Script field should look like this:

 

JimCoyne_4-1666939211159.png