set scrollable

This commit is contained in:
yggverse 2024-09-18 22:16:58 +03:00
parent 9039c7b2c9
commit f05a9c765e

View File

@ -2,5 +2,5 @@ use gtk::Notebook;
pub fn new() -> Notebook
{
return Notebook::builder().build();
return Notebook::builder().scrollable(true).build();
}