mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 02:24:30 +00:00
initial window size linux
This commit is contained in:
parent
e2a172f747
commit
345ed958e0
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, 1000));
|
||||
setWindowMinSize(const Size(1220, 900));
|
||||
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, 720, 1280);
|
||||
gtk_window_set_default_size(window, 1220, 900);
|
||||
gtk_widget_show(GTK_WIDGET(window));
|
||||
|
||||
g_autoptr(FlDartProject) project = fl_dart_project_new();
|
||||
|
|
Loading…
Reference in a new issue