Commit 98b192f0 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

Fixed issue #18716 - Перемещение диапазона формулы при нажатии End в процессе...

Fixed issue #18716 - Перемещение диапазона формулы при нажатии End в процессе создания формулы (http://bugzserver/show_bug.cgi?id=18716)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66694 954022d7-b5bf-4e40-9824-e11837661b57
parent 0eefb572
......@@ -851,13 +851,15 @@
case 36: // home
stop(); // Отключим стандартную обработку браузера нажатия home
dc = -2.5;
if( t.isFormulaEditMode ) break;
dc = -2.5;
if (ctrlKey) {dr = -2.5;}
break;
case 35: // end
stop(); // Отключим стандартную обработку браузера нажатия end
dc = 2.5;
if( t.isFormulaEditMode ) break;
dc = 2.5;
if (ctrlKey) {
dr = 2.5;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment