diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-04-01 20:31:05 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-04-01 20:31:05 +0800 |
commit | 242a4fd05a48641f738e30cc27534623f545ddbc (patch) | |
tree | 177e91053815a516e7ace474f7ee68df930cfa79 /embed/ephy-embed.h | |
parent | 4af17ff6353de154008c21f25cc21cf5533ed650 (diff) | |
download | gsoc2013-epiphany-242a4fd05a48641f738e30cc27534623f545ddbc.tar.gz gsoc2013-epiphany-242a4fd05a48641f738e30cc27534623f545ddbc.tar.zst gsoc2013-epiphany-242a4fd05a48641f738e30cc27534623f545ddbc.zip |
Fix bookmarks toolbar visibility in fullscreen and print preview mode, as
2004-04-01 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed.c: (ephy_embed_chrome_get_type):
* embed/ephy-embed.h:
* embed/mozilla/mozilla-embed.cpp:
* src/ephy-window.c: (get_chromes_visibility),
(sync_chromes_visibility), (update_chromes_actions),
(get_default_chrome), (ephy_window_init), (sync_prefs_with_chrome),
(ephy_window_view_bookmarksbar_cb):
Fix bookmarks toolbar visibility in fullscreen and print preview mode, as
well as for javascript popups. Fixes bug #138520.
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 217d3df2a..c2fcb2e91 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -59,10 +59,11 @@ typedef enum typedef enum { - EPHY_EMBED_CHROME_DEFAULT = 1 << 0, - EPHY_EMBED_CHROME_MENUBAR = 1 << 1, - EPHY_EMBED_CHROME_TOOLBAR = 1 << 2, - EPHY_EMBED_CHROME_STATUSBAR = 1 << 3 + EPHY_EMBED_CHROME_DEFAULT = 1 << 0, + EPHY_EMBED_CHROME_MENUBAR = 1 << 1, + EPHY_EMBED_CHROME_TOOLBAR = 1 << 2, + EPHY_EMBED_CHROME_STATUSBAR = 1 << 3, + EPHY_EMBED_CHROME_BOOKMARKSBAR = 1 << 4 } EphyEmbedChrome; typedef enum |