Skip to content
Snippets Groups Projects
Commit afab7ef8 authored by DarkGod's avatar DarkGod
Browse files

Fixed the black line appearing at the bottom of the screen on some resolutions

parent 3ca2901a
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -571,7 +571,7 @@ end
function _M:getMapSize()
local w, h = core.display.size()
return 0, 0, w, (self.map_h_stop or 80) - 16
return 0, 0, w, (self.map_h_stop or 80)
end
function _M:uiMoveResize(what, button, mx, my, xrel, yrel, bx, by, event, mode, on_change, add_text)
......
......@@ -23,7 +23,7 @@ local UserChat = require "profile-thread.UserChat"
module(..., package.seeall, class.make)
local debug = false
local debug = true
local metaport = 2240
local profilehost = "profiles.te4.org"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment