Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor Font configuration and import UI, and Font resources. | bruvzg | 2022-07-06 | 1 | -660/+0 |
| | |||||
* | Replace most uses of Map by HashMap | reduz | 2022-05-16 | 1 | -4/+4 |
| | | | | | | | | | | | | * 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! | ||||
* | Convert _notification methods to switch - Chunk C | Jakob Bouchard | 2022-02-16 | 1 | -4/+3 |
| | |||||
* | Remove most EditorNode constructor parameters and fields | trollodel | 2022-02-14 | 1 | -2/+1 |
| | |||||
* | Improve compilation speed (forward declarations/includes cleanup) | Hendrik Brucker | 2022-02-12 | 1 | -0/+1 |
| | |||||
* | [Editor] Fix font style matching issues. | bruvzg | 2022-02-08 | 1 | -77/+67 |
| | | | | | | Fix font selection when no style selected. Fix style matching when fonts have different style sets. Use SNAME for theme overrides. | ||||
* | Re-add missing `SNAME` macros in `get_theme_*` calls | Rémi Verschelde | 2022-02-08 | 1 | -6/+6 |
| | | | | | They were removed in the previous commit reverting the addition of `SNAME` to `add_theme_*` and theme setter methods, which is not wanted. | ||||
* | Revert "Add missing SNAME macro optimization to all theme methods call" | Rémi Verschelde | 2022-02-08 | 1 | -12/+12 |
| | | | | | | | | This reverts commit a988fad9a092053434545c32afae91ccbdfbe792. As discussed in #57725 and clarified in #57788, `SNAME` is not meant to be used everywhere but only in critical code paths. For theme methods specifically, it was by design that only getters use `SNAME` and not setters. | ||||
* | Add missing SNAME macro optimization to all theme methods call | jmb462 | 2022-02-06 | 1 | -12/+12 |
| | |||||
* | Edit font properties on multiple objects at once | NeilKleistGao | 2022-02-06 | 1 | -138/+319 |
| | |||||
* | Merge pull request #55352 from YeldhamDev/text_widget_undo | Rémi Verschelde | 2022-01-07 | 1 | -42/+157 |
|\ | |||||
| * | Add undo/redo capabilities to the text control plugin | Michael Alexsander | 2021-12-30 | 1 | -42/+157 |
| | | |||||
* | | Update copyright statements to 2022 | Rémi Verschelde | 2022-01-03 | 1 | -2/+2 |
|/ | | | | Happy new year to the wonderful Godot community! | ||||
* | Add functions for getting name and font style from dynamic and bitmap fonts. | bruvzg | 2021-10-31 | 1 | -0/+375 |
Add font selection toolbar editor plugin. |