Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/59078c3f20ab76fce3358c2a101d3c7d0584935a
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/59078c3f20ab76fce3358c2a101d3c7d0584935a
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/59078c3f20ab76fce3358c2a101d3c7d0584935a

The branch, master has been updated
       via  59078c3f20ab76fce3358c2a101d3c7d0584935a (commit)
      from  925a76bcba81bfc99a099a468884ec6e85950c00 (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=59078c3f20ab76fce3358c2a101d3c7d0584935a
commit 59078c3f20ab76fce3358c2a101d3c7d0584935a
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    risc os: URL bar: Fall back to URL drag if OS doesn't have text selection.

diff --git a/frontends/riscos/gui/url_bar.c b/frontends/riscos/gui/url_bar.c
index 63193a4..ec21e93 100644
--- a/frontends/riscos/gui/url_bar.c
+++ b/frontends/riscos/gui/url_bar.c
@@ -984,7 +984,7 @@ ro_gui_url_bar_click(struct url_bar *url_bar,
         */
        if (pointer->buttons == wimp_DRAG_SELECT ||
            pointer->buttons == wimp_DRAG_ADJUST) {
-               if (ns_wimp_has_text_selection()) {
+               if (!ns_wimp_has_text_selection()) {
                        if (pointer->i == url_bar->text.icon) {
                                if (action != NULL) {
                                        *action = TOOLBAR_URL_DRAG_URL;


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

Summary of changes:
 frontends/riscos/gui/url_bar.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontends/riscos/gui/url_bar.c b/frontends/riscos/gui/url_bar.c
index 63193a4..ec21e93 100644
--- a/frontends/riscos/gui/url_bar.c
+++ b/frontends/riscos/gui/url_bar.c
@@ -984,7 +984,7 @@ ro_gui_url_bar_click(struct url_bar *url_bar,
         */
        if (pointer->buttons == wimp_DRAG_SELECT ||
            pointer->buttons == wimp_DRAG_ADJUST) {
-               if (ns_wimp_has_text_selection()) {
+               if (!ns_wimp_has_text_selection()) {
                        if (pointer->i == url_bar->text.icon) {
                                if (action != NULL) {
                                        *action = TOOLBAR_URL_DRAG_URL;


-- 
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to