We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c16688 commit 5ff1abbCopy full SHA for 5ff1abb
README.md
@@ -48,15 +48,15 @@ you have many possiblities :
48
49
With a singleton, you can easily manage the dialog without the need to define an instance. but you can display only one dialog at a time
50
```cpp
51
-ImGuiFileDialog::Instance()->method_of_your_choice()
+ImGuiFileDialog::Instance()->method_of_your_choice();
52
```
53
54
### Multi Instance :
55
56
-for have the ability to displaya t same time many dialogs, you must define your own object
+for have the ability to display at same time, many dialogs. you must define your own instance
57
58
ImGuiFileDialog instance;
59
-instance.method_of_your_choice()
+instance.method_of_your_choice();
60
61
62
## Simple Dialog :
0 commit comments