Merge pull request #112208 from YeldhamDev/this_took_way_more_effort_than_it_deserves

Fix author names not showing up in the AssetLib
This commit is contained in:
Thaddeus Crews
2025-10-30 13:51:37 -05:00
4 changed files with 72 additions and 3 deletions

View File

@ -154,6 +154,10 @@ Ref<Font> LinkButton::get_button_font() const {
return theme_cache.font;
}
int LinkButton::get_button_font_size() const {
return theme_cache.font_size;
}
void LinkButton::pressed() {
if (uri.is_empty()) {
return;

View File

@ -108,6 +108,7 @@ public:
UnderlineMode get_underline_mode() const;
Ref<Font> get_button_font() const;
int get_button_font_size() const;
LinkButton(const String &p_text = String());
};