diff options
Diffstat (limited to 'CSV Editor/src/main.cpp')
-rw-r--r-- | CSV Editor/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CSV Editor/src/main.cpp b/CSV Editor/src/main.cpp index d8cd2d5..cb07c53 100644 --- a/CSV Editor/src/main.cpp +++ b/CSV Editor/src/main.cpp @@ -40,9 +40,9 @@ int main(int, char**) std::vector<std::string> headers = getCSVHeader(); std::vector<std::vector<Cell>> data = getCSVData(); - WNDCLASSEXW wc = { sizeof(wc), CS_CLASSDC, WndProc, 0L, 0L, GetModuleHandle(nullptr), nullptr, nullptr, nullptr, nullptr, L"ImGui Example", nullptr }; + WNDCLASSEXW wc = { sizeof(wc), CS_CLASSDC, WndProc, 0L, 0L, GetModuleHandle(nullptr), nullptr, nullptr, nullptr, nullptr, L"CSV Editor", nullptr }; ::RegisterClassExW(&wc); - HWND hwnd = ::CreateWindowW(wc.lpszClassName, L"Dear ImGui DirectX9 Example", WS_OVERLAPPEDWINDOW, 100, 100, 1280, 800, nullptr, nullptr, wc.hInstance, nullptr); + HWND hwnd = ::CreateWindowW(wc.lpszClassName, L"Indrajith's CSV Editor", WS_OVERLAPPEDWINDOW, 100, 100, 1280, 800, nullptr, nullptr, wc.hInstance, nullptr); // Initialize Direct3D if (!CreateDeviceD3D(hwnd)) @@ -113,7 +113,7 @@ int main(int, char**) { for (const auto& header : headers) { //std::cout << header << std::endl; - ImGui::TableSetupColumn(header.c_str(), ImGuiTableColumnFlags_WidthFixed); + ImGui::TableSetupColumn(header.c_str(), ImGuiTableColumnFlags_NoClip); } ImGui::TableHeadersRow(); for (size_t i = 0; i < data.size(); i++) { |