summaryrefslogtreecommitdiff
path: root/src/plugins/bookmarks
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-09-16 16:37:43 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-09-16 15:00:58 +0000
commit6e8a72b17f37fd668e585976f35d9f22507242a8 (patch)
tree957fdea5cb7ed161e2474540269e00d48dcda397 /src/plugins/bookmarks
parent77782ce79a6718d3b46b41f6e2c1d9a9b46379a7 (diff)
downloadqt-creator-6e8a72b17f37fd668e585976f35d9f22507242a8.tar.gz
Bookmarks: Remove hack to special-case the disassembler view
Change-Id: Ifd79b44fc879be6a1451401967cb894ca03356d1 Reviewed-by: hjk <hjk@theqtcompany.com>
Diffstat (limited to 'src/plugins/bookmarks')
-rw-r--r--src/plugins/bookmarks/bookmarksplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/bookmarks/bookmarksplugin.cpp b/src/plugins/bookmarks/bookmarksplugin.cpp
index 023a6293ea..a8014e8486 100644
--- a/src/plugins/bookmarks/bookmarksplugin.cpp
+++ b/src/plugins/bookmarks/bookmarksplugin.cpp
@@ -197,7 +197,7 @@ void BookmarksPlugin::editorAboutToClose(IEditor *editor)
void BookmarksPlugin::requestContextMenu(TextEditorWidget *widget,
int lineNumber, QMenu *menu)
{
- if (widget->textDocument()->isTemporary() || widget->textDocument()->property("DisassemblerView").toBool())
+ if (widget->textDocument()->isTemporary())
return;
m_bookmarkMarginActionLineNumber = lineNumber;