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:
@ -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;
|
||||
|
||||
@ -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());
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user