remove deprecated optional arguments

This commit is contained in:
yggverse 2024-10-09 10:19:38 +03:00
parent 3106844cc6
commit e2ab831d57
3 changed files with 9 additions and 14 deletions

View file

@ -136,7 +136,7 @@ impl Browser {
None => GString::new(), // @TODO
};
header.update(Some(title.as_str()), Some(subtitle.as_str()));
header.update(title.as_str(), subtitle.as_str());
}
});