Log marking. Useful for knowing when time based things happen in log.

This commit is contained in:
Robbie 2017-07-21 18:23:06 -05:00 committed by Ivan
parent adf119e960
commit 0508e1e638

View File

@ -52,6 +52,9 @@ void gs_frame::keyPressEvent(QKeyEvent *keyEvent)
{
switch (keyEvent->key())
{
case Qt::Key_L:
if (keyEvent->modifiers() == Qt::AltModifier) { static int count = 0; LOG_SUCCESS(GENERAL, "Made forced mark %d in log", ++count); }
break;
case Qt::Key_Return:
if (keyEvent->modifiers() == Qt::AltModifier) { OnFullScreen(); return; }
break;