Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/703fd10400f83bd136acf46162fe109f87d5e538
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/703fd10400f83bd136acf46162fe109f87d5e538
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/703fd10400f83bd136acf46162fe109f87d5e538

The branch, master has been updated
       via  703fd10400f83bd136acf46162fe109f87d5e538 (commit)
      from  11a83a951cf8e757a3a06dfe762cda41349bbd49 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=703fd10400f83bd136acf46162fe109f87d5e538
commit 703fd10400f83bd136acf46162fe109f87d5e538
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    RISC OS: Initialise nsfont before hotlist.
    
    This should allow the treeview to measure the width of label text.

diff --git a/frontends/riscos/gui.c b/frontends/riscos/gui.c
index 27b81d9..540a8be 100644
--- a/frontends/riscos/gui.c
+++ b/frontends/riscos/gui.c
@@ -1179,6 +1179,9 @@ static nserror gui_init(int argc, char** argv)
        /* Initialise save complete functionality */
        save_complete_init();
 
+       /* Initialise the font subsystem */
+       nsfont_init();
+
        /* Load in visited URLs, Cookies, and hostlist */
        urldb_load(nsoption_charp(url_path));
        urldb_load_cookies(nsoption_charp(cookie_file));
@@ -1212,9 +1215,6 @@ static nserror gui_init(int argc, char** argv)
        ro_message_register_route(message_WINDOW_INFO,
                        ro_msg_window_info);
 
-       /* Initialise the font subsystem */
-       nsfont_init();
-
        /* Initialise global information */
        ro_gui_get_screen_properties();
        ro_gui_wimp_get_desktop_font();


-----------------------------------------------------------------------

Summary of changes:
 frontends/riscos/gui.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/frontends/riscos/gui.c b/frontends/riscos/gui.c
index 27b81d9..540a8be 100644
--- a/frontends/riscos/gui.c
+++ b/frontends/riscos/gui.c
@@ -1179,6 +1179,9 @@ static nserror gui_init(int argc, char** argv)
        /* Initialise save complete functionality */
        save_complete_init();
 
+       /* Initialise the font subsystem */
+       nsfont_init();
+
        /* Load in visited URLs, Cookies, and hostlist */
        urldb_load(nsoption_charp(url_path));
        urldb_load_cookies(nsoption_charp(cookie_file));
@@ -1212,9 +1215,6 @@ static nserror gui_init(int argc, char** argv)
        ro_message_register_route(message_WINDOW_INFO,
                        ro_msg_window_info);
 
-       /* Initialise the font subsystem */
-       nsfont_init();
-
        /* Initialise global information */
        ro_gui_get_screen_properties();
        ro_gui_wimp_get_desktop_font();


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to