From 1376d727e9017ce6b3cfd2ca3008d4d5cdd4ff2a Mon Sep 17 00:00:00 2001 From: Vika Date: Fri, 23 Aug 2024 01:56:23 +0300 Subject: Comply with GNOME HIG by ensuring our window can scale to a small size --- src/widgets.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'src/widgets.rs') diff --git a/src/widgets.rs b/src/widgets.rs index eb5766b..e69de29 100644 --- a/src/widgets.rs +++ b/src/widgets.rs @@ -1,30 +0,0 @@ -use gtk::prelude::*; -use relm4::{ - gtk, RelmWidgetExt, WidgetTemplate, -}; - - -#[relm4::widget_template(pub)] -impl WidgetTemplate for FieldWithLabel { - view! { - #[name = "layout"] - gtk::Box { - set_orientation: gtk::Orientation::Horizontal, - - #[name = "label"] - gtk::Label { - set_width_request: 150, - set_height_request: 36, - }, - - #[name = "input_wrapper"] - gtk::Box { - set_orientation: gtk::Orientation::Horizontal, - set_css_classes: &["linked"], - - #[name = "input"] - gtk::Entry { set_hexpand: true }, - }, - } - } -} -- cgit 1.4.1