fixed restore window size for webapps

This commit is contained in:
Artem Anufrij 2018-10-18 22:19:39 +02:00
parent bf014d3560
commit fd958842d2
2 changed files with 11 additions and 3 deletions

View file

@ -40,6 +40,10 @@
<li>Moved to Meson</li>
<li>Support for local .html files</li>
</ul>
<p>Fixed:</p>
<ul>
<li>Restore correct window size</li>
</ul>
<p>Translation:</p>
<ul>
<li>Dutch (by Heimen Stoffels)</li>

View file

@ -198,10 +198,14 @@ namespace Webpin.Windows {
} else {
int x, y;
this.get_position (out x, out y);
int width, height;
this.get_size (out width, out height);
desktop_file.edit_property ("X-Webpin-WindowX", x.to_string ());
desktop_file.edit_property ("X-Webpin-WindowY", y.to_string ());
desktop_file.edit_property ("X-Webpin-WindowWidth", this.get_allocated_width ().to_string ());
desktop_file.edit_property ("X-Webpin-WindowHeight", this.get_allocated_height ().to_string ());
desktop_file.edit_property ("X-Webpin-WindowWidth", width.to_string ());
desktop_file.edit_property ("X-Webpin-WindowHeight", height.to_string ());
desktop_file.edit_property ("X-Webpin-WindowMaximized", "norm");
}
}