Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
VuhDo VuhDo
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 277
    • Issues 277
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • Operations
    • Operations
    • Incidents
    • Environments
  • Analytics
    • Analytics
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • VuhDo
  • VuhDoVuhDo
  • Issues
  • #195

Closed
Open
Created Oct 05, 2020 by Mike Teixeira@narrill

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.

Edited Oct 05, 2020 by Mike Teixeira
Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking