From 68372156a54c1ce6e0582ad745923397cb6f6d48 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Mon, 13 May 2024 02:31:57 +0530 Subject: Minor Changes * Updates Readme * Updates Window Titles --- CSV Editor/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'CSV Editor/src/main.cpp') 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 headers = getCSVHeader(); std::vector> 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++) { -- cgit v1.2.3