U: energy custom menu modify

This commit is contained in:
杨红岩 2024-03-26 15:22:53 +08:00
parent ee381ca3c9
commit 0d3bc2585e

View File

@ -181,11 +181,11 @@ func chromiumOnBeforeContextMenu(window IBrowserWindow, browser *ICefBrowser, fr
model.AddSeparator() model.AddSeparator()
} }
//A标签和图片 链接 //A标签和图片 链接
if params.TypeFlags() == 5 && params.MediaType() == consts.CM_MEDIATYPE_NONE { //a=5 if params.MediaType() == consts.CM_MEDIATYPE_NONE { //a=5
aUrlId = model.CefMis.NextCommandId() aUrlId = model.CefMis.NextCommandId()
model.AddItem(aUrlId, i18n.Resource("copyLink")) model.AddItem(aUrlId, i18n.Resource("copyLink"))
} }
if params.TypeFlags() == 9 && params.MediaType() == consts.CM_MEDIATYPE_IMAGE { // image=9 if params.MediaType() == consts.CM_MEDIATYPE_IMAGE { // image=9
//copyImageId = model.CefMis.NextCommandId() //copyImageId = model.CefMis.NextCommandId()
//model.AddItem(copyImageId, "复制图片") //model.AddItem(copyImageId, "复制图片")
imageUrlId = model.CefMis.NextCommandId() imageUrlId = model.CefMis.NextCommandId()
@ -193,7 +193,7 @@ func chromiumOnBeforeContextMenu(window IBrowserWindow, browser *ICefBrowser, fr
imageSaveId = model.CefMis.NextCommandId() imageSaveId = model.CefMis.NextCommandId()
model.AddItem(imageSaveId, i18n.Resource("imageSaveAs")) model.AddItem(imageSaveId, i18n.Resource("imageSaveAs"))
} }
if (params.TypeFlags() == 5 && params.MediaType() == consts.CM_MEDIATYPE_NONE) || params.TypeFlags() == 9 && params.MediaType() == consts.CM_MEDIATYPE_IMAGE { if params.MediaType() == consts.CM_MEDIATYPE_NONE || params.MediaType() == consts.CM_MEDIATYPE_IMAGE {
model.AddSeparator() model.AddSeparator()
} }
backId = model.CefMis.NextCommandId() backId = model.CefMis.NextCommandId()