Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmet-tezel authored Jul 15, 2021
1 parent 0323a80 commit 257e251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
ImGui::Text("Load DLL");

ImGui::PushItemWidth(380);
ImGui::InputText("###1", &dllPath[0], sizeof(dllPath), ImGuiInputTextFlags_ReadOnly);
ImGui::InputText("##1", &dllPath, ImGuiInputTextFlags_ReadOnly);
ImGui::SameLine();
dllButton = ImGui::Button("X##1"); // dllButton, opens operating system's file choose menu

ImGui::Text("Choose Running Application (.exe)");
ImGui::InputText("", &exePath[0], sizeof(exePath), ImGuiInputTextFlags_ReadOnly);
ImGui::InputText("##2", &exePath, ImGuiInputTextFlags_ReadOnly);
ImGui::SameLine();
exeButton = ImGui::Button("X##2"); // exeButton, opens operating system's file choose menu

Expand Down

0 comments on commit 257e251

Please sign in to comment.