mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-24 12:46:35 +01:00
Fixed showing context menu on labels without selectable flag.
This commit is contained in:
parent
d3b1e3fe27
commit
13e9b47b7f
5
src/lib/3rdparty/squeezelabelv2.cpp
vendored
5
src/lib/3rdparty/squeezelabelv2.cpp
vendored
@ -53,6 +53,11 @@ void SqueezeLabelV2::copy()
|
||||
|
||||
void SqueezeLabelV2::contextMenuEvent(QContextMenuEvent* event)
|
||||
{
|
||||
if (!(textInteractionFlags() & Qt::TextSelectableByMouse) && !(textInteractionFlags() & Qt::TextSelectableByKeyboard)) {
|
||||
event->ignore();
|
||||
return;
|
||||
}
|
||||
|
||||
QMenu menu;
|
||||
QAction* act = menu.addAction(tr("Copy"), this, SLOT(copy()));
|
||||
act->setShortcut(QKeySequence("Ctrl+C"));
|
||||
|
@ -14,8 +14,7 @@ $translated_by = "このページはDaiki Nodaが翻訳しました";
|
||||
|
||||
//Home Page
|
||||
$actual_version = "最新版";
|
||||
$actual_version_text = "最新版の更新が行われたのは". $qupzilla_version_date . "です。"
|
||||
"最新版のバージョンは" . $qupzilla_version . "です。変更点については更新履歴(changelog)を見てください。<br/>ダウンロードは<a href=\"download\">こちら</a>から!";
|
||||
$actual_version_text = "最新版の更新が行われたのは ". $qupzilla_version_date . "です。最新版のバージョンは " . $qupzilla_version . " です。変更点については更新履歴(changelog)を見てください。<br/>ダウンロードは<a href=\"download\">こちら</a>から!";
|
||||
$actual_version_button = "DOWNLOAD";
|
||||
$older_versions = "更新履歴";
|
||||
$older_versions_text = "各バージョンごとの機能の変遷や今までのQupZillaの更新について知りたいですか?<br/>それらはすべてgithubの<a>changelog</a>から参照することができます。";
|
||||
|
Loading…
Reference in New Issue
Block a user