mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-26 05:57:00 +03:00
Update for new core selection handling.
This commit is contained in:
parent
d8af191c0a
commit
67c6046fb1
@ -103,7 +103,7 @@ void gui_start_selection(struct gui_window *g)
|
|||||||
OnMenu(g->shared->win, AMI_MENU_CLEAR);
|
OnMenu(g->shared->win, AMI_MENU_CLEAR);
|
||||||
OnMenu(g->shared->win, AMI_MENU_COPY);
|
OnMenu(g->shared->win, AMI_MENU_COPY);
|
||||||
|
|
||||||
if(selection_read_only(browser_window_get_selection(g->shared->bw)) == false)
|
if (browser_window_get_editor_flags(g->shared->bw) & BW_EDITOR_CAN_CUT)
|
||||||
OnMenu(g->shared->win, AMI_MENU_CUT);
|
OnMenu(g->shared->win, AMI_MENU_CUT);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -297,7 +297,7 @@ struct ami_text_selection *ami_selection_to_text(struct gui_window_2 *gwin)
|
|||||||
|
|
||||||
if (sel) {
|
if (sel) {
|
||||||
/* Get selection string */
|
/* Get selection string */
|
||||||
ss = selection_get_copy(browser_window_get_selection(gwin->bw));
|
ss = browser_window_get_selection(gwin->bw);
|
||||||
if (ss == NULL)
|
if (ss == NULL)
|
||||||
return sel;
|
return sel;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user