Skip to content

Player Reader single players windows resizing? #36

@FiftyCaliber

Description

@FiftyCaliber

I use the single players 1-4 and I have their height set to 107 with Always Auto Resize off. Yet when I start client up and enter lobby some of the windows (seems to be random) resize to the 56 height visually but in the configuration it still says 107. I've done some programming in .lua before but honestly I am very inexperienced and rusty so I am unsure about trying to fix this issue myself. My option.lua is the following:

return
{
    configurationEnableWindow = false,
    enable = true,

    allPlayersEnableWindow = false,
    allHideWhenMenu = false,
    allHideWhenSymbolChat = false,
    allHideWhenMenuUnavailable = false,
    allPlayersChanged = true,
    allPlayersAnchor = 1,
    allPlayersX = 50,
    allPlayersY = 50,
    allPlayersW = 450,
    allPlayersH = 350,
    allPlayersNoTitleBar = "",
    allPlayersNoResize = "",
    allPlayersNoMove = "",
    allPlayersTransparentWindow = false,

    singlePlayersEnableWindow = true,
    singlePlayersShowBarText = true,
    singlePlayersShowBarMaxValue = true,

    players = {
        {
            EnableWindow = true,
            Changed = false,
            Anchor = 6,
            X = -225,
            Y = -100,
            W = 150,
            H = 107,
            NoTitleBar = "NoTitleBar",
            NoResize = "NoResize",
            NoMove = "NoMove",
            NoScrollbar = "NoScrollbar",
            AlwaysAutoResize = "",
            TransparentWindow = false,
            SD = true,
            Invulnerability = true,
        },
        {
            EnableWindow = true,
            Changed = false,
            Anchor = 6,
            X = -75,
            Y = -100,
            W = 150,
            H = 107,
            NoTitleBar = "NoTitleBar",
            NoResize = "NoResize",
            NoMove = "NoMove",
            NoScrollbar = "NoScrollbar",
            AlwaysAutoResize = "",
            TransparentWindow = false,
            SD = true,
            Invulnerability = true,
        },
        {
            EnableWindow = true,
            Changed = false,
            Anchor = 6,
            X = 75,
            Y = -100,
            W = 150,
            H = 107,
            NoTitleBar = "NoTitleBar",
            NoResize = "NoResize",
            NoMove = "NoMove",
            NoScrollbar = "NoScrollbar",
            AlwaysAutoResize = "",
            TransparentWindow = false,
            SD = true,
            Invulnerability = true,
        },
        {
            EnableWindow = true,
            Changed = false,
            Anchor = 6,
            X = 225,
            Y = -100,
            W = 150,
            H = 107,
            NoTitleBar = "NoTitleBar",
            NoResize = "NoResize",
            NoMove = "NoMove",
            NoScrollbar = "NoScrollbar",
            AlwaysAutoResize = "",
            TransparentWindow = false,
            SD = true,
            Invulnerability = true,
        },
    },
}

Also not like it's an issue but why is player reader even active while in lobby?

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