1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-05 19:15:32 +00:00

window: hide windows on delete

As calls is supposed to run always in background,
destroying window on close results in unintended issues.
Let's simply hide the window instead.
This commit is contained in:
Mohammed Sadiq 2019-01-29 11:36:16 +05:30
parent 7481e022f1
commit d62976a9a1
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@
<property name="hide_titlebar_when_maximized">True</property>
<property name="show_menubar">False</property>
<property name="title" translatable="yes">Calls</property>
<signal name="delete-event" handler="gtk_widget_hide_on_delete"/>
<child>
<object class="GtkBox">
<property name="visible">True</property>

View file

@ -8,6 +8,7 @@
<property name="title" translatable="yes">Calls</property>
<property name="hide_titlebar_when_maximized">True</property>
<property name="show_menubar">False</property>
<signal name="delete-event" handler="gtk_widget_hide_on_delete"/>
<child>
<object class="GtkBox">
<property name="visible">True</property>