Move cursor after appending date to backup name

* Send the cursor to the end of the input text

Change-Id: Id4f20717134cd38188cc1107f73dcd6bb995f377
This commit is contained in:
Matt Mower
2016-06-24 12:04:27 -05:00
committed by Dees Troy
parent 8323ab53ee
commit 76b8afc4be
+2
View File
@@ -792,6 +792,8 @@ int GUIAction::appenddatetobackupname(std::string arg __unused)
if (Backup_Name.size() > MAX_BACKUP_NAME_LEN)
Backup_Name.resize(MAX_BACKUP_NAME_LEN);
DataManager::SetValue(TW_BACKUP_NAME, Backup_Name);
PageManager::NotifyKey(KEY_END, true);
PageManager::NotifyKey(KEY_END, false);
operation_end(0);
return 0;
}