Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/7f61cc15ea126a198419a91f1bc595c0e7287c8e
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/7f61cc15ea126a198419a91f1bc595c0e7287c8e
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/7f61cc15ea126a198419a91f1bc595c0e7287c8e

The branch, master has been updated
       via  7f61cc15ea126a198419a91f1bc595c0e7287c8e (commit)
      from  b099a8582e8596c5595981b4b7bdd769d7753625 (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=7f61cc15ea126a198419a91f1bc595c0e7287c8e
commit 7f61cc15ea126a198419a91f1bc595c0e7287c8e
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    Fix radio button labels on OS3 (thx Mikhail Malyshev)

diff --git a/frontends/amiga/gui_options.c b/frontends/amiga/gui_options.c
index 8a9fd7b..203e9a0 100755
--- a/frontends/amiga/gui_options.c
+++ b/frontends/amiga/gui_options.c
@@ -270,9 +270,8 @@ static void ami_gui_opts_array_to_list(struct List *list, 
const char *array[], i
                                node = AllocChooserNode(CNA_Text, array[i], 
TAG_DONE);
                        break;
                        case NSA_LIST_RADIO:
-                               /* Note: RBNA_Labels is RBNA_Label in OS4
-                                * Also note: These labels don't work (FIXME) */
-                               node = AllocRadioButtonNode(RBNA_Labels, 
array[i], TAG_DONE);
+                               /* Note: RBNA_Labels is RBNA_Label in OS4 */
+                               node = AllocRadioButtonNode(0, RBNA_Labels, 
array[i], TAG_DONE);
                        break;
                        default:
                        break;


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

Summary of changes:
 frontends/amiga/gui_options.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/frontends/amiga/gui_options.c b/frontends/amiga/gui_options.c
index 8a9fd7b..203e9a0 100755
--- a/frontends/amiga/gui_options.c
+++ b/frontends/amiga/gui_options.c
@@ -270,9 +270,8 @@ static void ami_gui_opts_array_to_list(struct List *list, 
const char *array[], i
                                node = AllocChooserNode(CNA_Text, array[i], 
TAG_DONE);
                        break;
                        case NSA_LIST_RADIO:
-                               /* Note: RBNA_Labels is RBNA_Label in OS4
-                                * Also note: These labels don't work (FIXME) */
-                               node = AllocRadioButtonNode(RBNA_Labels, 
array[i], TAG_DONE);
+                               /* Note: RBNA_Labels is RBNA_Label in OS4 */
+                               node = AllocRadioButtonNode(0, RBNA_Labels, 
array[i], TAG_DONE);
                        break;
                        default:
                        break;


-- 
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