1
0
Fork 0

Merge pull request #110855 from arkology/project-manager-favorites

`ProjectManager`: Change favorite button tooltip to toggle
This commit is contained in:
Thaddeus Crews 2025-10-21 15:10:49 -05:00
commit b6136161c2
No known key found for this signature in database
GPG Key ID: 8C6E5FEB5FC03CCC
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ ProjectListItemControl::ProjectListItemControl() {
favorite_button = memnew(TextureButton);
favorite_button->set_name("FavoriteButton");
favorite_button->set_tooltip_text(TTRC("Add to favorites"));
favorite_button->set_tooltip_text(TTRC("Toggle Favorite"));
favorite_button->set_auto_translate_mode(AUTO_TRANSLATE_MODE_ALWAYS);
// This makes the project's "hover" style display correctly when hovering the favorite icon.
favorite_button->set_mouse_filter(MOUSE_FILTER_PASS);