luncher: Until we fix expansion zoom a little less.

This allows an area in the middle where you are only over 1 icon...
clicktastic
This commit is contained in:
Andy Williams 2017-01-22 10:06:42 +00:00
parent ca075ce21f
commit 633bcfbefb
1 changed files with 7 additions and 6 deletions

View File

@ -43,13 +43,14 @@ group { name: "e/gadget/luncher/icon";
script {
public urgent;
public style;
public Float:engage_scale(cursorpos, iconpos, size) {
new Float:scale = 2.25 - (abs(cursorpos-(iconpos+size/2)) / (size*2));
if (scale < 1.0) scale = 1.0;
if (scale > 2.0) scale = 2.0;
public Float:engage_scale(cursorpos, iconpos, size) {
new Float:zoom = 1.5;
new Float:scale = (zoom+0.25) - (abs(cursorpos-(iconpos+size/2)) / (size*2));
if (scale < 1.0) scale = 1.0;
if (scale > zoom) scale = zoom;
return scale;
}
return scale;
}
public message(Msg_Type:type, id, ...) {
//Style Variable - Used to Identify Style - Name Must Match an Item in the Data List of e/gadget/luncher/bar