1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Added "Clear" button top right of output debug console in editor

This commit is contained in:
Julian Murgia - StraToN
2015-07-29 00:41:24 +02:00
parent f697ec2fe0
commit f46e340ab5
2 changed files with 16 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ class EditorLog : public PanelContainer {
OBJ_TYPE( EditorLog, PanelContainer );
ToolButton *button;
Button *clearbutton;
Label *title;
RichTextLabel *log;
TextureButton *tb;
@@ -62,6 +63,7 @@ class EditorLog : public PanelContainer {
// void _dragged(const Point2& p_ofs);
void _close_request();
void _flip_request();
void _clear_request();
static void _undo_redo_cbk(void *p_self,const String& p_name);
protected: