Skip to content

Commit 2e67865

Browse files
committed
Fixed crash on collapse; Removed console;
1 parent 9d8850a commit 2e67865

File tree

7 files changed

+6
-493
lines changed

7 files changed

+6
-493
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.10)
22
set(CMAKE_CXX_STANDARD 11)
33
set(CMAKE_CXX_STANDARD_REQUIRED ON)
44

5-
SET(PROJECT_VERSION_MAJOR 0)
5+
SET(PROJECT_VERSION_MAJOR 1)
66
SET(PROJECT_VERSION_MINOR 1)
7-
SET(PROJECT_VERSION_PATCH 0)
7+
SET(PROJECT_VERSION_PATCH 1)
88

99
project(ImStudio C CXX)
1010

src/main.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#include "includes.h"
22
#include "sources/object.h"
33
#include "sources/buffer.h"
4-
#include "sources/console.h"
54
#include "sources/gui.h"
65

76
#if defined(_MSC_VER) && (_MSC_VER >= 1900) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS)
@@ -137,8 +136,6 @@ int main(int argc, char *argv[])
137136

138137
if (gui.child_color) utils::ShowColorExportWindow(&gui.child_color);
139138

140-
if (gui.child_console) gui.ShowConsole(&gui.child_console,&gui);
141-
142139
if (gui.child_resources) utils::ShowResourcesWindow(&gui.child_resources);
143140

144141
if (gui.child_about) utils::ShowAboutWindow(&gui.child_about);

0 commit comments

Comments
 (0)