initial release

This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2023-07-01 12:32:50 +03:00
parent 36eb99f4c1
commit c606fce211

View File

@ -166,8 +166,8 @@ fn build_ui(app: &Application) {
.margin_start(12) .margin_start(12)
.margin_end(12) .margin_end(12)
.hexpand(true) .hexpand(true)
.halign(Align::Start)
.justify(Justification::Left) .justify(Justification::Left)
.wrap(true)
.build(); .build();
driver_middle_part_description_label.add_css_class("midLabel"); driver_middle_part_description_label.add_css_class("midLabel");
driver_version_icon.set_tooltip_text(Some(&String::from_utf8(command_version_label.stdout).unwrap())); driver_version_icon.set_tooltip_text(Some(&String::from_utf8(command_version_label.stdout).unwrap()));
@ -242,7 +242,7 @@ fn build_ui(app: &Application) {
.icon_name("mintinstall") .icon_name("mintinstall")
.default_width(1200) .default_width(1200)
.default_height(600) .default_height(600)
.width_request(500) .width_request(700)
.height_request(500) .height_request(500)
.startup_id("pika-drivers") .startup_id("pika-drivers")
.build(); .build();
@ -283,6 +283,7 @@ fn build_ui(app: &Application) {
.child(&credits_window_box) .child(&credits_window_box)
.transient_for(&window) .transient_for(&window)
.resizable(false) .resizable(false)
.hide_on_close(true)
.build(); .build();
credits_window_box.append(&credits_icon); credits_window_box.append(&credits_icon);