diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/dillo.cc | 2 | ||||
-rw-r--r-- | src/ui.cc | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -46,7 +46,8 @@ dillo-fltk2 - Bound FltkMultiLineTextResource to the html parser (TEXTAREA). Patches: Jorge Arellano Cid +- Connected signals to <li> elements (fixes links within lists). - - Enabled text, background-color, panel_size and geometry in preferences. + - Enabled text, background-color, panel_size, geometry, fullscreen, + start_page and geometry offset in preferences (dillorc2). - Enabled clicking over image links. - Improved notification upon leaving links. - Implemented image-link URL showing in status bar. @@ -67,7 +68,6 @@ dillo-fltk2 - Made the stop button sensitive when loading an image. - Added more statics in dpi, const in pixmaps, and removed redundant includes. - Made cleanups in prefs (hiding local data/defs/symbols). - - Enabled the geometry offset part (dillorc2). Patches: place +- Fixed a problem with locally-installed dpis. - Added code for optional image loading (nice interface) very advanced! 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; } |