Add Window::title getter on Windows and macOS
This commit is contained in:
parent
a7a7cc64cd
commit
08f9e374e0
11 changed files with 64 additions and 7 deletions
|
|
@ -589,6 +589,11 @@ impl Window {
|
|||
pub fn theme(&self) -> Option<Theme> {
|
||||
x11_or_wayland!(match self; Window(window) => window.theme())
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn title(&self) -> String {
|
||||
x11_or_wayland!(match self; Window(window) => window.title())
|
||||
}
|
||||
}
|
||||
|
||||
/// Hooks for X11 errors.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue