Skip to content

Commit

Permalink
(release) v0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Oct 20, 2020
1 parent 3cd7ef4 commit f609859
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DearPyGui/src/Platform/Apple/mvAppleWindow.mm
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static void glfw_error_callback(int error, const char *description)
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
m_window = glfwCreateWindow(width, height, mvApp::GetApp()->m_title.c_str(), nullptr, nullptr);
glfwSetWindowPos(m_window, mvApp::GetApp()->m_mainXPos, mvApp::GetApp()->m_mainYPos);
mvApp::GetApp()->setWindowSize(width, height);
mvApp::GetApp()->setActualSize(width, height);

device = MTLCreateSystemDefaultDevice();;
m_commandQueue = [device newCommandQueue];
Expand Down
2 changes: 1 addition & 1 deletion DearPyGui/src/Platform/Linux/mvLinuxWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace Marvel {
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
m_window = glfwCreateWindow(width, height, mvApp::GetApp()->m_title.c_str(), nullptr, nullptr);
glfwSetWindowPos(m_window, mvApp::GetApp()->m_mainXPos, mvApp::GetApp()->m_mainYPos);
mvApp::GetApp()->setWindowSize(width, height);
mvApp::GetApp()->setActualSize(width, height);

glfwMakeContextCurrent(m_window);

Expand Down

0 comments on commit f609859

Please sign in to comment.