diff options
author | jcid <devnull@localhost> | 2008-01-02 16:14:25 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-01-02 16:14:25 +0100 |
commit | b18814008a610f87de33c4f4394f4c4cb5f566a2 (patch) | |
tree | 0c38f4023ad894ff4396c39964af12801d6f1c0b /src | |
parent | f5ee910658b12a930379631f0bd55ce781441878 (diff) |
+ - Enabled fullscreen and start_page in preferences (dillorc2).
Diffstat (limited to 'src')
-rw-r--r-- | src/dillo.cc | 2 | ||||
-rw-r--r-- | src/ui.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dillo.cc b/src/dillo.cc index cd1e31fa..cfefa053 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -100,7 +100,7 @@ int main(int argc, char **argv) a_Url_free(url); } else { /* Send startup screen */ - //a_Nav_push(bw, prefs.start_page); + a_Nav_push(bw, prefs.start_page); } return fltk::run(); @@ -603,7 +603,7 @@ UI::UI(int win_w, int win_h, const char* label, const UI *cur_ui) : PanelSize = prefs.panel_size; Small_Icons = prefs.small_icons; CuteColor = 206; - Fullscreen = false; + Fullscreen = prefs.fullwindow_start; } |