Revert "Run button on code editor"

This reverts commit 75b16b8618.
This commit is contained in:
BADIM-PC\Vadim 2017-10-09 08:55:15 +03:00
parent 7033061973
commit dd2332737d
3 changed files with 2 additions and 18 deletions

View File

@ -835,11 +835,6 @@ static void redo(Code* code)
update(code);
}
static void run()
{
setStudioMode(TIC_RUN_MODE);
}
static void doTab(Code* code, bool shift)
{
char* pos = code->cursor.position;
@ -1807,7 +1802,6 @@ static void onStudioEvent(Code* code, StudioEvent event)
case TIC_TOOLBAR_PASTE: copyFromClipboard(code); break;
case TIC_TOOLBAR_UNDO: undo(code); break;
case TIC_TOOLBAR_REDO: redo(code); break;
case TIC_TOOLBAR_RUN: run(); break;
}
}

View File

@ -456,20 +456,11 @@ void drawExtrabar(tic_mem* tic)
0b00110000,
0b00000000,
0b00000000,
0b00000000,
0b01000000,
0b01100000,
0b01110000,
0b01100000,
0b01000000,
0b00000000,
0b00000000,
};
static const s32 Colors[] = {8, 9, 6, 5, 5};
static const StudioEvent Events[] = {TIC_TOOLBAR_CUT, TIC_TOOLBAR_COPY, TIC_TOOLBAR_PASTE, TIC_TOOLBAR_UNDO, TIC_TOOLBAR_REDO, TIC_TOOLBAR_RUN};
static const char* Tips[] = {"CUT [ctrl+x]", "COPY [ctrl+c]", "PASTE [ctrl+v]", "UNDO [ctrl+z]", "REDO [ctrl+y]","RUN [ctrl+r]"};
static const StudioEvent Events[] = {TIC_TOOLBAR_CUT, TIC_TOOLBAR_COPY, TIC_TOOLBAR_PASTE, TIC_TOOLBAR_UNDO, TIC_TOOLBAR_REDO};
static const char* Tips[] = {"CUT [ctrl+x]", "COPY [ctrl+c]", "PASTE [ctrl+v]", "UNDO [ctrl+z]", "REDO [ctrl+y]"};
for(s32 i = 0; i < sizeof Icons / BITS_IN_BYTE; i++)
{

View File

@ -172,7 +172,6 @@ typedef enum
TIC_TOOLBAR_PASTE,
TIC_TOOLBAR_UNDO,
TIC_TOOLBAR_REDO,
TIC_TOOLBAR_RUN,
} StudioEvent;
void setStudioEvent(StudioEvent event);