mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-26 05:57:00 +03:00
More fixup for new core selection treatment.
This commit is contained in:
parent
8a4bfc537f
commit
8195113196
@ -652,12 +652,12 @@ void ami_menu_update_disabled(struct gui_window *g, hlcache_handle *c)
|
||||
#ifdef WITH_PDF_EXPORT
|
||||
OnMenu(win,AMI_MENU_SAVEAS_PDF);
|
||||
#endif
|
||||
if(browser_window_has_selection(g->shared->bw))
|
||||
if(browser_window_get_editor_flags(g->shared->bw) & BW_EDITOR_CAN_COPY)
|
||||
{
|
||||
OnMenu(win,AMI_MENU_COPY);
|
||||
OnMenu(win,AMI_MENU_CLEAR);
|
||||
|
||||
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(win,AMI_MENU_CUT);
|
||||
}
|
||||
if(g->c_h) OnMenu(win,AMI_MENU_PASTE);
|
||||
|
Loading…
Reference in New Issue
Block a user