[commit] r2107 - trunk/GME/ObjectInspector
    GMESRC Repository Notifications 
    gme-commit at list.isis.vanderbilt.edu
       
    Thu Nov 15 12:43:14 CST 2012
    
    
  
Author: ksmyth
Date: Thu Nov 15 12:43:14 2012
New Revision: 2107
Log:
Fix Ctrl-A for multiline edit in Object Inspector
Modified:
   trunk/GME/ObjectInspector/InPlaceEdit.cpp
Modified: trunk/GME/ObjectInspector/InPlaceEdit.cpp
==============================================================================
--- trunk/GME/ObjectInspector/InPlaceEdit.cpp	Wed Nov 14 15:39:00 2012	(r2106)
+++ trunk/GME/ObjectInspector/InPlaceEdit.cpp	Thu Nov 15 12:43:14 2012	(r2107)
@@ -116,6 +116,13 @@
 						GetParent()->SetFocus();
 					}
 				}break;
+			case 'A':
+				{
+					if(::GetKeyState(VK_CONTROL) & 0x8000)
+					{
+						SetSel(0, -1);
+					}
+				}break;
 			default:
 				;
 		}	
    
    
More information about the gme-commit
mailing list