Neuron

Neuron

98.2k Downloads

Bars showing when they shouldn't

ylixir opened this issue ยท 9 comments

commented

Immediately I saw bars that should be invisible when no modifier keys were pressed were visible all the time, (paged settings still worked) but the actual settings section to control visibility and states is blank in settings, so I don't think that it's usable yet.

Originally posted by @Ketrel in #449 (comment)

Just creating this issue to keep track of the thing about hidden bars showing when they shouldn't (modifier bar/buttons or override stuff?)

commented

Few clarifications to this if it's going to be standalone.

  1. Paged bars (including bars that are invisible on page 1 but not page 2) work correctly.
  2. Bars that rely on modifier keys (for example, my toys bar should only show if Ctrl + Shift is pressed) shows all the time.
  3. The Strata doesn't seem to be honored for these bars either (DragonFlight branch, it shows above chat, NeuronNext branch it shows behind chat)
  4. The actual menus to modify these settings (States and Visibility) appear as blank tabs (this may not be a bug but just an incomplete UI)
commented

@Ketrel NeuronNext has been given some love with regards to the bar visibility. Can you check and see if it's working better for you?

Haven't looked at the strata yet, but the visibility should hopefully be squared away

commented
  1. Paged visibility still working
  2. Modifier based visibility looks like it's working now
  3. Strata is still an issue, but that's expected at this point.
  4. The menus appear to be there and working (I just did a quick once over, didn't try changing any settings)

Yep, looks like the only thing sill pending is Strata. All the other visibility issues look good now!
(Though I'm getting hammered with a lua error about Texture being nil in one of the files, but that's outside the scope of this I think)

commented

So I just spent some time messing with the strata, and I can't reproduce the issues you are seeing. Here is what I did:

  1. moved an action bar to cover the chat frame. It was at medium strata and below the chat frame
  2. changed it to high and it moved above the chat frame.
  3. changed it to only show when shift is down and reloaded the ui
  4. it's still above the frame, so move it to medium and it moves below the chat frame

Can you provide more details about the circumstances under which it doesn't work, or maybe post a minimal config that reproduces it? (can copy paste from the experimental section in settings)

commented

NeuronNext is now main btw

commented

Both of these pics have the strata set to medium.

Dragonflight branch
neuron-df

NeuronNext/Main branch
neuron-main

(This bar only shows while Ctrl+Shift are pressed in both cases)

commented

if you change it to high does it move in front of the chat frame?

i'm not that worried if something super vague like "medium" isn't exactly the same. as long as you can get it to be where you want by changing the setting

commented

Yes, if I change it to high it goes in front of the chatbox.

Since the various strata are blizzard constants, I think medium is removed/broken as it evaluates to nil, not the words like the rest do. /run print(HIGH) returns High for example, while MEDIUM returns nil.

Also, the lua errors I'm getting, I'll open a separate issue as it doesn't appear to be related to any of this.

commented

here the top bar with time warp is medium strata and the bottom bar is low
image

now with the bottom bar set to high, and the top bar still set to medium
image

there are no blizzard constants in the code, just the numbers 2-6 strings. there is some weird code in neuron legacy that randomly adds one to the strata. maybe that logic caused this inconsistency?
let's think of deleting pointless and confusing code as fixing the bug where it had the wrong strata before and now it has the correct strata ๐ŸŽŠ ;-)

since strata seems to be working fine, i'm going to close this issue

edited because i was wrong about magic numbers