summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-06 23:20:12 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-06 23:20:51 +0100
commit91fd6d395fad08bcf5d068be95575865ccb305cb (patch)
tree951a1ad8512097d71cf9edf44aacbdadab98932c /runtime
parent00b60d819b25abe14790a26fe0eb5818c3c6bc4f (diff)
downloadiced-91fd6d395fad08bcf5d068be95575865ccb305cb.tar.gz
iced-91fd6d395fad08bcf5d068be95575865ccb305cb.tar.bz2
iced-91fd6d395fad08bcf5d068be95575865ccb305cb.zip
Remove `window::change_title` since it's redundant
Applications can change title declaratively.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/src/window.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/runtime/src/window.rs b/runtime/src/window.rs
index e82d4505..9be61315 100644
--- a/runtime/src/window.rs
+++ b/runtime/src/window.rs
@@ -73,9 +73,6 @@ pub enum Action {
/// Get the current [`Mode`] of the window.
GetMode(Id, oneshot::Sender<Mode>),
- /// Change the title of the window.
- ChangeTitle(Id, String),
-
/// Toggle the window to maximized or back
ToggleMaximize(Id),
@@ -388,11 +385,6 @@ pub fn change_level<T>(id: Id, level: Level) -> Task<T> {
task::effect(crate::Action::Window(Action::ChangeLevel(id, level)))
}
-/// Changes the title of the window.
-pub fn change_title<T>(id: Id, title: String) -> Task<T> {
- task::effect(crate::Action::Window(Action::ChangeTitle(id, title)))
-}
-
/// Set the inner maximum size of the window.
pub fn set_max_size<T>(id: Id, size: Option<Size>) -> Task<T> {
task::effect(crate::Action::Window(Action::SetMaxSize(id, size)))