Changed order for applying OS-specific workarounds.
This commit is contained in:
parent
3537b05dce
commit
35097c3805
@ -36,6 +36,14 @@ func (m *MainWindow) Initialize() {
|
|||||||
|
|
||||||
m.window.Connect("configure-event", m.checkPositionAndSize)
|
m.window.Connect("configure-event", m.checkPositionAndSize)
|
||||||
|
|
||||||
|
// Additional OS-specific initialization.
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
m.initializeWin()
|
||||||
|
}
|
||||||
|
if runtime.GOOS == "darwin" {
|
||||||
|
m.initializeMac()
|
||||||
|
}
|
||||||
|
|
||||||
// Restoring window position.
|
// Restoring window position.
|
||||||
var win_pos_x_str string = "0"
|
var win_pos_x_str string = "0"
|
||||||
var win_pos_y_str string = "0"
|
var win_pos_y_str string = "0"
|
||||||
@ -145,14 +153,6 @@ func (m *MainWindow) Initialize() {
|
|||||||
|
|
||||||
m.window.Add(m.vbox)
|
m.window.Add(m.vbox)
|
||||||
|
|
||||||
// Additional Windows-related initialization.
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
m.initializeWin()
|
|
||||||
}
|
|
||||||
if runtime.GOOS == "darwin" {
|
|
||||||
m.initializeMac()
|
|
||||||
}
|
|
||||||
|
|
||||||
m.window.ShowAll()
|
m.window.ShowAll()
|
||||||
|
|
||||||
// Launch events.
|
// Launch events.
|
||||||
|
Reference in New Issue
Block a user