mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-30 21:14:14 +00:00
hide widget on empty value
This commit is contained in:
parent
9be94979b9
commit
cc15498f7a
@ -23,6 +23,8 @@ Subtitle::Subtitle()
|
||||
set_width_chars(
|
||||
WIDTH_CHARS
|
||||
);
|
||||
|
||||
hide();
|
||||
}
|
||||
|
||||
Subtitle::~Subtitle() = default;
|
||||
@ -30,7 +32,10 @@ Subtitle::~Subtitle() = default;
|
||||
void Subtitle::set(
|
||||
const Glib::ustring & TEXT
|
||||
) {
|
||||
|
||||
set_text(
|
||||
TEXT
|
||||
);
|
||||
|
||||
if (get_text().empty()) hide(); else show();
|
||||
}
|
@ -27,6 +27,8 @@ Title::Title()
|
||||
set_text(
|
||||
DEFAULT_TEXT
|
||||
);
|
||||
|
||||
hide();
|
||||
}
|
||||
|
||||
Title::~Title() = default;
|
||||
@ -37,4 +39,6 @@ void Title::set(
|
||||
set_text(
|
||||
TEXT.empty() ? DEFAULT_TEXT : TEXT + " - " + DEFAULT_TEXT
|
||||
);
|
||||
|
||||
if (get_text().empty()) hide(); else show();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user