Latest WACUP public preview for x86 & x64 is build #22656 (September 12th 2025) (x86 & x64 changelogs)
Latest restricted WACUP beta release is build #22656 (September 12th 2025) (x86 & x64 changelogs)

Author Topic: Blank media library window right panel  (Read 1572 times)

qwerty

  • Jr. Member
  • **
  • Posts: 9
    • View Profile
    • qwerty.xyz
Blank media library window right panel
« on: August 08, 2025, 01:22:06 PM »
The Media Library right panel is empty no matter what is chosen in the left menu. Moreover, when I resize the middle panel, it produces rendering artefacts as shown in the screenshot.

However, when I double click the items, it still fills in the playlist (as also shown in the screenshot), so the library itself likely is still working.


This is happening for some weeks ~ months, even after I updated today.
« Last Edit: August 08, 2025, 01:30:24 PM by qwerty »

dro

  • Admin / WACUP Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 5367
    • View Profile
    • WACUP (Winamp Community Update Project)
Re: Blank media library window right panel
« Reply #1 on: August 12, 2025, 02:41:50 PM »
What OS & build type of WACUP is this happening with? So far I'm not seeing the active view in the media library messing up when testing under Win7, Win10, Win11 nor WINE 10.12. Also are you using any custom OS theme handlers or forced compatibility settings on WACUP?

qwerty

  • Jr. Member
  • **
  • Posts: 9
    • View Profile
    • qwerty.xyz
Re: Blank media library window right panel
« Reply #2 on: September 03, 2025, 11:24:58 AM »
Is there a way to copy this system information with a single button? Don't see anything in About. - actually that's another bug on its own. Recording that just now.


Windows 10, 10.0.19045 Build 19045
WACUP - v1.99.36.22278 (x86)


What does "custom OS theme handlers" mean? Not sure about forced compatibility either - do you mean windows compatibility in desktop shortcut preferences? (I did not set / change that).

Anyway, I found there is a "post-release update", which I just applied and it fixed my Media Library issue.

This is what I see now. (You will have to make the browser window wider or scroll right to see it. The recording is too large.)
« Last Edit: September 03, 2025, 11:26:30 AM by qwerty »

dro

  • Admin / WACUP Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 5367
    • View Profile
    • WACUP (Winamp Community Update Project)
Re: Blank media library window right panel
« Reply #3 on: September 03, 2025, 01:42:17 PM »
The prefs window not drawing properly on loading has been reported by one other & I still can't replicate it over various OS & wacup installs.

"custom OS theme handlers" is making modifications to the OS to change the look of it outside of what it currently offers.

qwerty

  • Jr. Member
  • **
  • Posts: 9
    • View Profile
    • qwerty.xyz
Re: Blank media library window right panel
« Reply #4 on: September 05, 2025, 03:29:07 PM »
It has just happened again. I could use it yesterday. Today after I woke up the PC, I opened the Library, saw the Albums view, I tried to search something and nothing happened, I changed library, nothing happened, I still saw the albums. I closed and opened the ML window and same issue. The middle section can be dragged and it keeps lines behind it.


Ah, got it. So you mean like WinAero Tweaker, Rainmeter, Windhawk, etc?
« Last Edit: September 05, 2025, 03:30:56 PM by qwerty »

dro

  • Admin / WACUP Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 5367
    • View Profile
    • WACUP (Winamp Community Update Project)
Re: Blank media library window right panel
« Reply #5 on: September 05, 2025, 04:15:46 PM »
No, something like windowblinds or the old OS theme packs which were known for hooking into the ui & screwing around with things. I just can't replicate your visual issue & without a potential capture of the process in that broken state (via the command-line /OHLOOKATYOU option) there's nothing I can do. Most likely now it's something failing & that's preventing anything within the library view from then working & if you're hibernating then potentially things are happening that are out of my control / leaving wacup in a broken state. Unless there's some consistent way for me to replicate this or potentially a better idea from the process snapshot I don't have anything to suggest for this.

qwerty

  • Jr. Member
  • **
  • Posts: 9
    • View Profile
    • qwerty.xyz
Re: Blank media library window right panel
« Reply #6 on: September 08, 2025, 04:40:38 PM »
Am I doing it wrong?

dro

  • Admin / WACUP Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 5367
    • View Profile
    • WACUP (Winamp Community Update Project)
Re: Blank media library window right panel
« Reply #7 on: September 08, 2025, 06:45:33 PM »
You need to follow the information from wacup.exe /? for how to use that action which I should've mentioned but I can't remember everything.

qwerty

  • Jr. Member
  • **
  • Posts: 9
    • View Profile
    • qwerty.xyz
Re: Blank media library window right panel
« Reply #8 on: September 21, 2025, 06:47:50 PM »
Okay, I found the issue!

Sometimes the library would work, sometimes not and I just figured out what it was

Start wacup fresh

1. use Global hotkey for media library, in my case AltGr+L (Ctrl+Alt+L)
  - observe blank Media Library, close it
2. focus Wacup and use Alt+L hotkey to open ML
  - Media Library renders correctly, close it
3. use Global hotkey again
  - this time the Media Library works as expected
« Last Edit: September 21, 2025, 06:48:35 PM by qwerty »

qwerty

  • Jr. Member
  • **
  • Posts: 9
    • View Profile
    • qwerty.xyz
Re: Blank media library window right panel
« Reply #9 on: Yesterday at 10:17:21 PM »
Correction, it is even weirder than that. It is as if ALT+L was somehow turning the Library core on/off.

From my observation, it is as if there was this "hidden" state:


enabled = false // "media library engine" for lack of a better term; when false, this causes the empty freezing media library window
ml_open = false // the UI visibility

// when you focus winamp and press Alt+L
function altL() {
   if (ml_open) {
      ml_open = false
      enabled = false
   } else {
      ml_open = true
      enabled = true
   }
}

// when you hit the global AltGr+L or Ctrl+Alt+L
function altGrL() {
   if (ml_open) {
      ml_open = false
   } else {
      ml_open = true
   }
}


Now I hope you see where I am getting with it. In short, it is possible to make it such that "enabled" is false, while "ml_open" is true.
Basically, when I first open Media Library with Alt+L and then close it with AltGr+L, then I can use it as expected, but I can never close ML with Alt+L, this breaks it until I open it again with Alt+L.



// example state machine

[ enabled, ml_open ]

[ false, false ]                        // engine disabled, UI closed
altL()       -> [ true, true ]         // engine enabled,    UI visible
altL()       -> [ false, false ]      // engine disabled, UI closed
altGrL()    -> [ false, true ]      // engine disabled, UI visible  <- frozen empty window
altGrL()    -> [ false, false ]      // engine disabled, UI closed
altL()       -> [ true, true ]         // engine enabled,    UI visible
altGrL()    -> [ true, false ]      // engine enabled,    UI closed   <- opened with altL, closed with altGrL keeps it working
altGrL()    -> [ true, true ]         // engine enabled,    UI visible  <- working window
altL()       -> [ false, false ]      // engine disabled, UI closed
« Last Edit: Yesterday at 10:21:14 PM by qwerty »