Skip to content

Commit 96d4d58

Browse files
committed
[ADD] : define DrawHeader() / DrawContent() / DrawFooter() as virtual
1 parent 9712897 commit 96d4d58

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ImGuiFileDialog.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -805,9 +805,9 @@ namespace IGFD
805805

806806
private:
807807
// dialog parts
808-
void DrawHeader(); // draw header part of the dialog (bookmark btn, dir creation, path composer, search bar)
809-
void DrawContent(); // draw content part of the dialog (bookmark pane, file list, side pane)
810-
bool DrawFooter(); // draw footer part of the dialog (file field, fitler combobox, ok/cancel btn's)
808+
virtual void DrawHeader(); // draw header part of the dialog (bookmark btn, dir creation, path composer, search bar)
809+
virtual void DrawContent(); // draw content part of the dialog (bookmark pane, file list, side pane)
810+
virtual bool DrawFooter(); // draw footer part of the dialog (file field, fitler combobox, ok/cancel btn's)
811811

812812
// widgets components
813813
virtual void DrawDirectoryCreation(); // draw directory creation widget

0 commit comments

Comments
 (0)