summaryrefslogtreecommitdiffstats
path: root/editor/editor_toaster.h
Commit message (Collapse)AuthorAgeFilesLines
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-4/+4
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Avoid recursive errors in EditorToasterGilles Roudière2022-03-081-0/+2
|
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-4/+4
|
* Fix toast notification button color on light themeYuri Roubinsky2022-01-181-0/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Defer the call to 'popup_str' to the next cycle to let Godot Engine's editor ↵Xavier Sellier2021-12-141-0/+2
| | | | time to properly start
* Implement toast notifications in the editorGilles Roudière2021-10-141-0/+116