• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OTClient margin top otv8

bpm91

Intermediate OT User
Joined
May 23, 2019
Messages
931
Solutions
7
Reaction score
128
Location
Brazil
YouTube
caruniawikibr
I want to give a top margin of 5 pixels, but I can't, would anyone know how to do it?




Lua:
  MiniPanel
    id: friendList
    text: Friends List
    anchors.top: parent.top
    anchors.left: neutralList.right
    margin-left: 10
    size: 180 150
   
    ScrollablePanel
      id: friendListGuilds
      anchors.fill: parent
      vertical-scrollbar: ListScrollBar3
      &onMousePress: modules.game_guilds.friendList
      layout: verticalBox
      padding-left: 5
      padding-right: 5

    VerticalScrollBar
      id: ListScrollBar3
      anchors.top: friendListGuilds.top
      anchors.right: friendListGuilds.right
      anchors.bottom: friendListGuilds.bottom
      step: 14
      pixels-scroll: true
Post automatically merged:

padding-left: 0
padding-right: 0
padding-top: 15
 
Last edited:
Back
Top