From edff89620f620bb5598dffaa2c200f3d222a5b99 Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Fri, 6 Feb 2015 21:13:18 -0500 Subject: [PATCH] ecere/gui/RepButton: Fixed pushed offset - Was broken to fix double line moves by Ctrl-Up/Down in DirectoriesBox in 30cc42fcfe486eefd27c6a034777787fabf1da34 to --- ecere/src/sys/Date.ec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ecere/src/sys/Date.ec b/ecere/src/sys/Date.ec index fce06ab..c869d55 100644 --- a/ecere/src/sys/Date.ec +++ b/ecere/src/sys/Date.ec @@ -520,8 +520,8 @@ public: { if(key == hotKey) { - return NotifyPushed(master, this, 0,0, key.modifiers); - // return true; + /*return */NotifyPushed(master, this, 0,0, key.modifiers); + return false; //true; } return true; } @@ -541,7 +541,7 @@ public: button.pressing = true; button.NotifyClicked(this, button, x, y, mods); button.timer.Start(); - return false; //true; + return true; } bool NotifyMouseLeave(RepButton button, Modifiers mods) -- 1.8.3.1