Pixel-perfect positioning problems
Panels can currently only be moved by clicking and dragging, which makes pixel-perfect arrangement problematic, particularly when parenting other frames to elements of VuhDo.
The sliders in Panels > Sizing appear to suffer from this issue as well.
An example panel I pulled from my WTF\Account\...\SavedVariables\VuhDo.lua:
{
["y"] = 369.0000915527344, -- Bad
["x"] = 807.5004272460938, -- Bad
["orientation"] = "TOPLEFT",
["relativePoint"] = "BOTTOMLEFT",
["scale"] = 1,
["height"] = 62.00000381469727, -- Bad
["growth"] = "TOPLEFT",
["width"] = 62.00000381469727, -- Bad
}, -- [1]
The same panel, but with the correct values:
{
["y"] = 369,
["x"] = 808,
["scale"] = 1,
["relativePoint"] = "BOTTOMLEFT",
["orientation"] = "TOPLEFT",
["height"] = 62,
["growth"] = "TOPLEFT",
["width"] = 62,
}, -- [1]
Vuhdo itself didn't look any different after adjusting the values, but a TellMeWhen group I had parented to this panel had a number of minor graphical issues that were resolved.
It would be nice to be able to enter these values manually rather than having to rely on click-and-drag.