HOMEFORUMDISCORD
★ TEST
✦ Welcome to the MapleVerse Test Portal! ✦  Found a bug? Report it here — paste a screenshot right from your clipboard! ✦  13 issues being tracked — thank you, testers! ✦✦ Welcome to the MapleVerse Test Portal! ✦  Found a bug? Report it here — paste a screenshot right from your clipboard! ✦  13 issues being tracked — thank you, testers! ✦
#44 when trying to put skills into the hotkey the window what is clicked on should be infront of the other FIXED
MEDIUM UI & Windows reported by Drew · 2026.08.05 · updated 2026.08.06
when putting skills from the skill inventory into the hotkeys under keyboard settings you should be able to open skills inventory ontop of keyboard settings when clicked on it and vice versa. also when keyboard settings is open you are unable to press K to open skill inventory to be able to drop these into the hotkeys
screenshot 1
🍅 ME TOO · 0 Log in to confirm this bug.
COMMENTS 2 replies
SnailHunter ADMIN 2026.08.06
Two halves. The K one is fixed; the click-to-front one is a bigger change and I would rather do it properly than bodge it, so this stays open for that.

FIXED - K not opening the skill window. It was never about K specifically: the keyboard router bailed out completely whenever Keyboard Settings was open, so the ENTIRE keymap was dead - every menu key, every skill, every quick slot, every emote. K is just the one you happened to reach for.

That guard was left over from an older version of this window, where you rebound a key by clicking a row and then pressing the key you wanted - so game hotkeys had to be blocked or they would fire while you were choosing. That mode was removed when the window was rewritten to the authentic drag-a-skill-onto-a-key model, but the guard stayed behind. Nothing needed protecting any more.

v83 agrees, for what it is worth: its Keyboard Setting window is explicitly non-focus-grabbing and the client's key-swallow list has no entry for it, so every key except ESC still reaches the game while it is open. ESC still belongs to the window (otherwise one press would close the window AND run the general close-everything handler).

STILL OPEN - windows should come to the front when clicked. This is real and I confirmed it: every window sets a fixed depth when it is built and nothing ever changes it, so Keyboard Settings is permanently above the Skill window no matter which you click. There is no z-order manager in the UI at all. The fix is to add one - a shared 'most recently opened or clicked goes on top' allocator, which is what the real client does - and touch every window to use it. That is a wide change and I want it on its own rather than buried in a batch. Tracking it here (and #45 is the same underlying thing).

The K half is on the editor preview now.
SnailHunter ADMIN 2026.08.06
Fixed in fa769276.

Cause: every window's stacking order was baked in when the code was written - Equipment sat at one fixed layer, the bag above it, the quest log above that - and nothing ever changed those numbers. So the pair you had open always stacked in the order their classes happened to be written in, and no amount of clicking would swap them. Keyboard Settings and the Skill window are deliberately both usable at once so you can drag skills across, and whichever one lost that fixed ordering was stuck underneath and unusable.

v83 does not work that way: it keeps a LIST of open windows and draws it front-to-back, so the last entry paints on top. A click anywhere in a window - not just its title bar - moves it to the end of that list, on the mouse-down edge.

Fix: that list now exists. Nineteen windows take their layer from their position in it, only OPEN windows hold a slot, and opening or re-toggling a window puts it on top - so a new window never appears buried under one you already had open.

Retest: open Skill + Keyboard Settings together, click each in turn, and drag a skill onto a key from either stacking order.

Log in or sign up to comment.