mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 09:17:37 +00:00
reduce minimum height and set starting height lower on linux
This commit is contained in:
parent
d4eb4535aa
commit
3bda6620ef
2 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ void main() async {
|
|||
|
||||
if (Util.isDesktop) {
|
||||
setWindowTitle('Stack Wallet');
|
||||
setWindowMinSize(const Size(1220, 900));
|
||||
setWindowMinSize(const Size(1220, 100));
|
||||
setWindowMaxSize(Size.infinite);
|
||||
}
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ static void my_application_activate(GApplication* application) {
|
|||
gtk_window_set_title(window, "Stack Wallet");
|
||||
}
|
||||
|
||||
gtk_window_set_default_size(window, 1220, 900);
|
||||
gtk_window_set_default_size(window, 1220, 500);
|
||||
gtk_widget_show(GTK_WIDGET(window));
|
||||
|
||||
g_autoptr(FlDartProject) project = fl_dart_project_new();
|
||||
|
|
Loading…
Reference in a new issue