This commit is contained in:
Igor Timofeev 2015-12-04 22:59:35 +03:00
parent 910bc9b58f
commit 20c90a4e15
3 changed files with 3 additions and 4 deletions

View File

@ -22,7 +22,7 @@ local config = {
yCurrentByte = 1,
pathToFile = "bin/resolution.lua",
sizeOfFile = 1,
transparency = 40,
transparency = 30,
colors = {
background = 0xdddddd,
topBar = 0xdddddd,
@ -203,8 +203,8 @@ local function drawAll(force)
drawTopBar()
drawHexAndText()
--Тень
buffer.square(config.x + config.width, config.y + 1, 2, config.height, 0x000000, 0xffffff, " ", config.transparency)
buffer.square(config.x + 2, config.y + config.height, config.width - 2, 1, 0x000000, 0xffffff, " ", config.transparency)
buffer.square(config.x + config.width, config.y + 1, 2, config.height, 0x000000, 0xffffff, " ", 50)
buffer.square(config.x + 2, config.y + config.height, config.width - 2, 1, 0x000000, 0xffffff, " ", 50)
buffer.draw(force)
end

Binary file not shown.

View File

@ -477,7 +477,6 @@ while true do
end
end
elseif eventData[1] == "OSWallpaperChanged" then
ecs.createShortCut(pathToWallpaper, path)
changeWallpaper()
drawAll(true)
end