Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/7f61cc15ea126a198419a...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/7f61cc15ea126a198419a91...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/7f61cc15ea126a198419a91f1...
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=7f61cc15ea126a19841...
commit 7f61cc15ea126a198419a91f1bc595c0e7287c8e
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
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