1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-17 14:51:04 +02:00

refactor(popup): rename is_visible to visible

This commit is contained in:
Jake Stanger 2024-05-18 16:21:42 +01:00
parent 6b8e8743dd
commit dedb89bb02
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
2 changed files with 3 additions and 3 deletions

View file

@ -229,7 +229,7 @@ impl Popup {
}
/// Checks if the popup is currently visible
pub fn is_visible(&self) -> bool {
pub fn visible(&self) -> bool {
self.window.is_visible()
}