Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 66601
Collapse All | Expand All

(-)epiphany-1.4.0/data/epiphany.schemas.in (+11 lines)
Lines 498-502 Link Here
498
        <long>Use caret browsing mode.</long>
498
        <long>Use caret browsing mode.</long>
499
        </locale>
499
        </locale>
500
      </schema>
500
      </schema>
501
      <schema>
502
        <key>/schemas/apps/epiphany/general/exit_fullscreen_button</key>
503
        <applyto>/apps/epiphany/general/exit_fullscreen_button</applyto>
504
        <owner>epiphany</owner>
505
        <type>bool</type>
506
        <default>true</default>
507
        <locale name="C">
508
        <short>Display the "Exit Fullscreen" button</short>
509
        <long>Display the "Exit Fullscreen" button in the corner of the screen.</long>
510
        </locale>
511
      </schema>
501
    </schemalist>
512
    </schemalist>
502
</gconfschemafile>
513
</gconfschemafile>
(-)epiphany-1.4.0/lib/ephy-prefs.h (+1 lines)
Lines 35-40 Link Here
35
#define CONF_INTERFACE_MIDDLE_CLICK_OPEN_URL	"/apps/epiphany/general/middle_click_open_url"
35
#define CONF_INTERFACE_MIDDLE_CLICK_OPEN_URL	"/apps/epiphany/general/middle_click_open_url"
36
#define CONF_AUTO_DOWNLOADS			"/apps/epiphany/general/automatic_downloads"
36
#define CONF_AUTO_DOWNLOADS			"/apps/epiphany/general/automatic_downloads"
37
#define CONF_DESKTOP_IS_HOME_DIR		"/apps/nautilus/preferences/desktop_is_home_dir"
37
#define CONF_DESKTOP_IS_HOME_DIR		"/apps/nautilus/preferences/desktop_is_home_dir"
38
#define CONF_EXIT_FULLSCREEN_BUTTON		"/apps/epiphany/general/exit_fullscreen_button"
38
39
39
/* Directories */
40
/* Directories */
40
#define CONF_STATE_SAVE_DIR		"/apps/epiphany/directories/save"
41
#define CONF_STATE_SAVE_DIR		"/apps/epiphany/directories/save"
(-)epiphany-1.4.0/src/ephy-window.c (-1 / +2 lines)
Lines 552-558 Link Here
552
552
553
	sync_chromes_visibility (window);
553
	sync_chromes_visibility (window);
554
554
555
	if (eel_gconf_get_boolean (CONF_LOCKDOWN_FULLSCREEN))
555
	if (eel_gconf_get_boolean (CONF_LOCKDOWN_FULLSCREEN)
556
		|| !eel_gconf_get_boolean (CONF_EXIT_FULLSCREEN_BUTTON))
556
	{
557
	{
557
		/* no need to show "exit fullscreen" button */
558
		/* no need to show "exit fullscreen" button */
558
		return;
559
		return;

Return to bug 66601