diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-09-16 16:37:43 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-09-16 15:00:58 +0000 |
commit | 6e8a72b17f37fd668e585976f35d9f22507242a8 (patch) | |
tree | 957fdea5cb7ed161e2474540269e00d48dcda397 /src/plugins/bookmarks | |
parent | 77782ce79a6718d3b46b41f6e2c1d9a9b46379a7 (diff) | |
download | qt-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.cpp | 2 |
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; |