|
From: <set...@us...> - 2006-05-05 13:52:27
|
Revision: 1353 Author: sethdill Date: 2006-05-05 06:52:21 -0700 (Fri, 05 May 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1353&view=rev Log Message: ----------- Made command-a (select all) work in the jump dialog. (I could have sworn this already worked, but apparently I was imagining it.) Modified Paths: -------------- Frontier/trunk/Common/IowaRuntime/Source/iowaruntime.c Frontier/trunk/Common/source/langcard.c Modified: Frontier/trunk/Common/IowaRuntime/Source/iowaruntime.c =================================================================== --- Frontier/trunk/Common/IowaRuntime/Source/iowaruntime.c 2006-05-05 00:28:11 UTC (rev 1352) +++ Frontier/trunk/Common/IowaRuntime/Source/iowaruntime.c 2006-05-05 13:52:21 UTC (rev 1353) @@ -58,6 +58,7 @@ #define copyCmd 4 #define pasteCmd 5 #define clearCmd 6 +#define selectAllCmd 8 #endif @@ -1722,6 +1723,11 @@ break; + case selectAllCmd: /* 2006-05-04 smd */ + editselectall (hedit); + + break; + } /*switch*/ return (true); Modified: Frontier/trunk/Common/source/langcard.c =================================================================== --- Frontier/trunk/Common/source/langcard.c 2006-05-05 00:28:11 UTC (rev 1352) +++ Frontier/trunk/Common/source/langcard.c 2006-05-05 13:52:21 UTC (rev 1353) @@ -145,6 +145,9 @@ shellwritescrap (textscraptype); cardEditCommand (pasteitem); break; + case 'a': + cardEditCommand (selectallitem); break; + default: handled = false; break; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |