summaryrefslogtreecommitdiffstats
path: root/editor/gui/editor_run_bar.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-7/+7
|\
| * Rename internal Button icon to button_icon to match exposed methodsAaron Franke2024-10-291-7/+7
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* New Quick Open DialogStijn Hinlopen2024-10-011-9/+4
| | | | | | | | | | | | | | | | | | - Updated list view with thumbnails, and separate file name. - Added a grid view which has larger icons. - Added toggle to filter out files from addons. - Store history for each opened resource type. New Editor settings for Quick Open: - Startup display mode (grid or list): - Determined by the requested resource type. - Whatever was last used. - Toggle to filter out files from addons (for persistence). Notes - The dialog is now created once in EditorNode, and globally available for other components. - A fixed number of result scenes are instantiated, and reused based on query. - Drop support for multiselect.
* [Scene] Add SceneStringName::toggledYuri Rubinsky2024-08-281-1/+1
|
* Allow theming movie writer button icon colorpassivestar2024-06-161-3/+4
|
* [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-8/+8
|
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-4/+4
|
* Add hover highlight to main editor buttonsMatt Enad2024-02-161-6/+6
| | | | Updates styling of the editor run bar, plugin, bottom panel, icon buttons, and main menu buttons for accessibility.
* Fix reloading current scene forgetting pathA Thousand Ships2024-01-141-1/+2
| | | | | Scene was stopped before running which cleared the last run scene, forcing it to run the currently edited scene instead
* Add bulk change guards to successive theme overrides in Editor and GUIYuri Sizov2023-10-191-0/+2
|
* Cleanup some GLOBAL_DEFskobewi2023-09-151-1/+1
|
* Add EditorStringNames singletonkobewi2023-09-031-15/+16
|
* C#: Move build button to EditorRunBarRaul Santos2023-08-031-1/+5
| | | | | | | - Move C# build button to `EditorRunBar`. - Add C# build icon. - Add shortcut macros to `GodotTools`. - Move C# build shortcuts to C#.
* Avoid accessing the theme too early in EditorRunBarYuri Sizov2023-04-271-2/+4
|
* Fix various typos with codespellRémi Verschelde2023-04-261-1/+1
| | | | | | Also includes the grammar fix from #76206. Co-authored-by: Peter Anderson <BWPanda@users.noreply.github.com>
* Extract editor run toolbar into its own componentYuri Sizov2023-04-191-0/+442
- Simplify and update its logic. - Simplify EditorScript. - Improve EditorNode and other relevant includes. - Fix scene-based path in the movie writer when reloading a scene.