View previous topic :: View next topic |
Move the Cheat Engine Icon to the left a few pixels? |
YES |
|
60% |
[ 3 ] |
I DON'T CARE |
|
40% |
[ 2 ] |
|
Total Votes : 5 |
|
Author |
Message |
RGiuffre How do I cheat?
Reputation: 0
Joined: 14 Nov 2020 Posts: 1 Location: Los Angeles, CA, USA
|
Posted: Sat Nov 14, 2020 2:18 am Post subject: Cosmetic Change Request - Cheat Engine Logo on main screen |
|
|
I don't know if it's just me being a type "A" person, but can you move the logo to the left a few pixels so that it is not directly touching the top right window pane? Ever since I've used this that really bugs me. Otherwise, THANK YOU for this program and all of the work you're done on it.
|
|
Back to top |
|
 |
panraven Grandmaster Cheater
Reputation: 62
Joined: 01 Oct 2008 Posts: 958
|
Posted: Sat Nov 14, 2020 8:52 am Post subject: |
|
|
by changing MainForm's LogoPanel BorderWidth move logo left a bit.
Code: |
GetMainForm().LogoPanel.BorderWidth = 4
|
bonus:
Code: |
function toggleHalfLogo(...)
if select('#',...)>0 then
_LogoScaleHalf = ...
else
_LogoScaleHalf = not _LogoScaleHalf
end
local MF, scaleHalf = GetMainForm(), _LogoScaleHalf
MF.LogoPanel.BorderWidth = 4
MF.Logo.Width = scaleHalf and 26 or 52
MF.Logo.Height = scaleHalf and 38 or 75
MF.SettingsButton.Font.Size= scaleHalf and 4 or 8
end
toggleHalfLogo()
-- added : right-click Settins Button to toggle
GetMainForm().SettingsButton.OnMouseDown = function (sender, button, x, y)
if button==1 then toggleHalfLogo()end
return button, x, y
end
|
_________________
- Retarded. |
|
Back to top |
|
 |
|