client: More tweaks for lower desktop resolutions

This commit is contained in:
Cédric Bellegarde 2023-09-11 17:36:27 +02:00
parent 7574fb4b30
commit 4359918825
3 changed files with 1 additions and 11 deletions

View file

@ -40,7 +40,7 @@ public class SearchBar : Hdy.SearchBar {
this.entry.has_focus = true;
var column = new Hdy.Clamp();
column.maximum_size = 450;
column.maximum_size = 400;
column.add(this.entry);
connect_entry(this.entry);

View file

@ -105,11 +105,6 @@ public class ConversationList.View : Gtk.ScrolledWindow, Geary.BaseInterface {
}
}
public override void get_preferred_width(out int minimum_size, out int natural_size) {
minimum_size = 360;
natural_size = 500;
}
/**
* Updates the display of the received time on each list row.
*

View file

@ -151,11 +151,6 @@ public class ConversationViewer : Gtk.Stack, Geary.BaseInterface {
base_unref();
}
public override void get_preferred_width(out int minimum_size, out int natural_size) {
minimum_size = 360;
natural_size = 400;
}
/**
* Puts the view into composer mode, showing a full-height composer.
*/