Skip to content

Commit

Permalink
[UPD] : Grid mode is disabled for the moment, because todo
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Sep 20, 2021
1 parent 7beb3fd commit 2e2ac8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ImGuiFileDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2248,11 +2248,13 @@ namespace IGFD
prDisplayMode = DisplayModeEnum::THUMBNAILS_LIST;
if (ImGui::IsItemHovered()) ImGui::SetTooltip(DisplayMode_ThumbailsList_ButtonHelp);
ImGui::SameLine();
/* todo
if (IMGUI_RADIO_BUTTON(DisplayMode_ThumbailsGrid_ButtonString,
prDisplayMode == DisplayModeEnum::THUMBNAILS_GRID))
prDisplayMode = DisplayModeEnum::THUMBNAILS_GRID;
if (ImGui::IsItemHovered()) ImGui::SetTooltip(DisplayMode_ThumbailsGrid_ButtonHelp);
ImGui::SameLine();
*/
prDrawThumbnailGenerationProgress();
}

Expand Down Expand Up @@ -3879,7 +3881,7 @@ namespace IGFD
{
if (ImGui::BeginChild("##thumbnailsGridsFiles", vSize))
{

// todo
}

ImGui::EndChild();
Expand Down
1 change: 1 addition & 0 deletions ImGuiFileDialogConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
//#define DisplayMode_FilesList_ButtonHelp "File List"
//#define DisplayMode_ThumbailsList_ButtonString "TL"
//#define DisplayMode_ThumbailsList_ButtonHelp "Thumbnails List"
// todo
//#define DisplayMode_ThumbailsGrid_ButtonString "TG"
//#define DisplayMode_ThumbailsGrid_ButtonHelp "Thumbnails Grid"

Expand Down

0 comments on commit 2e2ac8f

Please sign in to comment.