Skip to content

Fix yoffset issue in setup() #5

@duckwork

Description

@duckwork

Just after the #ifdef XINERAMA block in setup(), x and y are set. This:

y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh - yoffset;

should be this:

y = topbar ? yoffset : DisplayHeight(dc->dpy, screen) - mh - yoffset;

If I need to create a PR for this issue, I can, but I figured since it's basically just a typo I'd just open an issue about it.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions