Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tryton
Tryton
Commits
be9910c8c785
Commit
be9910c8
authored
Jan 14, 2023
by
Cédric Krier
Browse files
Increase default size of main window
The average size of screen increases over time.
parent
cc0283f3af84
Changes
2
Hide whitespace changes
Inline
Side-by-side
tryton/tryton/config.py
View file @
be9910c8
...
...
@@ -69,7 +69,7 @@
'bug.url'
:
'https://bugs.tryton.org/'
,
'download.url'
:
'https://downloads-cdn.tryton.org/'
,
'download.frequency'
:
60
*
60
*
8
,
'menu.pane'
:
2
0
0
,
'menu.pane'
:
3
20
,
}
self
.
config
=
{}
self
.
options
=
{}
...
...
tryton/tryton/gui/main.py
View file @
be9910c8
...
...
@@ -125,7 +125,7 @@
return
self
.
window
=
Gtk
.
ApplicationWindow
(
application
=
self
,
title
=
"Tryton"
)
self
.
window
.
set_default_size
(
96
0
,
72
0
)
self
.
window
.
set_default_size
(
128
0
,
96
0
)
self
.
window
.
maximize
()
self
.
window
.
set_position
(
Gtk
.
WindowPosition
.
CENTER
)
self
.
window
.
set_resizable
(
True
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment