diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-12-24 01:36:17 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-12-24 01:36:17 +0800 |
commit | f21ba0f6e9ec1d4234484d278c57b5c8b69eea3e (patch) | |
tree | fe6466b41920899ff59bc5a6af259c7c5c21cfc4 /data | |
parent | d30314a1863659ada0f49a3b2ed930466057c5ec (diff) | |
download | gsoc2013-epiphany-f21ba0f6e9ec1d4234484d278c57b5c8b69eea3e.tar.gz gsoc2013-epiphany-f21ba0f6e9ec1d4234484d278c57b5c8b69eea3e.tar.zst gsoc2013-epiphany-f21ba0f6e9ec1d4234484d278c57b5c8b69eea3e.zip |
download-dialog hidden state is now saved to gconf. New downloads started while
the dialog is hidden pop-up a notification (as in libnotify).
We now require libnotify to build.
Fixes bug #311209.
svn path=/trunk/; revision=7802
Diffstat (limited to 'data')
-rw-r--r-- | data/epiphany.schemas.in | 12 | ||||
-rw-r--r-- | data/glade/epiphany.glade | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/data/epiphany.schemas.in b/data/epiphany.schemas.in index 81ee8c3d9..9f2211b52 100644 --- a/data/epiphany.schemas.in +++ b/data/epiphany.schemas.in @@ -497,5 +497,17 @@ <short>Automatically manage offline status with NetworkManager</short> </locale> </schema> + <schema> + <key>/schemas/apps/epiphany/dialogs/downloads_hidden</key> + <applyto>/apps/epiphany/dialogs/downloads_hidden</applyto> + <owner>epiphany</owner> + <type>bool</type> + <default>false</default> + <locale name="C"> + <short>Visibility of the downloads window</short> + <long>Hide or show the downloads window. When hidden, a notification will be shown when new downloads are started.</long> + </locale> + </schema> + </schemalist> </gconfschemafile> diff --git a/data/glade/epiphany.glade b/data/glade/epiphany.glade index e45c4324f..4e4db6ecc 100644 --- a/data/glade/epiphany.glade +++ b/data/glade/epiphany.glade @@ -614,6 +614,8 @@ <widget class="GtkDialog" id="download_manager_dialog"> <property name="border_width">5</property> + <property name="default_width">440</property> + <property name="default_height">260</property> <property name="title" translatable="yes">Downloads</property> <property name="type">GTK_WINDOW_TOPLEVEL</property> <property name="window_position">GTK_WIN_POS_NONE</property> |