Refine window setting so we at the very least set 1300 on 1366x768.
This commit is contained in:
parent
eac4940c77
commit
aca24f3281
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ void set_optimal_default_window_size(KotoWindow *self) {
|
|||
if (workarea.width <= 1280) { // Honestly how do you even get anything done?
|
||||
gtk_widget_set_size_request(GTK_WIDGET(self), 1200, 675);
|
||||
} else if ((workarea.width > 1280) && (workarea.width <= 1600)) { // Plebian monitor resolution
|
||||
gtk_widget_set_size_request(GTK_WIDGET(self), 1400, 787);
|
||||
gtk_widget_set_size_request(GTK_WIDGET(self), 1300, 709);
|
||||
} else if ((workarea.width > 1600) && (workarea.width <= 1920)) { // Something slightly normal
|
||||
gtk_widget_set_size_request(GTK_WIDGET(self), 1600, 900);
|
||||
} else if ((workarea.width > 1920) && (workarea.width <= 2560)) { // Well aren't you hot stuff?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue