Skip to content

Commit

Permalink
fix open with menu
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfc committed Oct 30, 2019
1 parent 58dc3c8 commit 0a16d8b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion liteidex/deploy/welcome/en/changes.md
Expand Up @@ -3,7 +3,7 @@
## LiteIDE X Version
LiteIDE is a simple, open source, cross-platform Go IDE.

### 2019.10.29 Ver X36.2
### 2019.10.30 Ver X36.2
* LiteIDE
* add new image viewer plugin
* folder view support multi copy & paste
Expand Down
2 changes: 1 addition & 1 deletion liteidex/deploy/welcome/zh_CN/changes.md
Expand Up @@ -3,7 +3,7 @@
## LiteIDE X Version
LiteIDE is a simple, open source, cross-platform Go IDE.

### 2019.10.29 Ver X36.2
### 2019.10.30 Ver X36.2
* LiteIDE
* add new image viewer plugin
* folder view support multi copy & paste
Expand Down
8 changes: 4 additions & 4 deletions liteidex/src/plugins/imageeditor/imageeditor.pro
@@ -1,10 +1,6 @@
TARGET = imageeditor
TEMPLATE = lib

!isEmpty(QT.svg.name): QT += svg
else: DEFINES += QT_NO_SVG


include(../../liteideplugin.pri)
include (../../utils/mimetype/mimetype.pri)
include (../../utils/navigate/navigate.pri)
Expand All @@ -28,3 +24,7 @@ HEADERS +=\

RESOURCES += \
imageeditor.qrc

!isEmpty(QT.svg.name): QT += svg
else: DEFINES += QT_NO_SVG

2 changes: 1 addition & 1 deletion liteidex/src/utils/folderview/multifolderview.cpp
Expand Up @@ -239,7 +239,7 @@ void MultiFolderView::customContextMenuRequested(const QPoint &pos)
m_contextMenu->addAction(m_openShellAct);
} else if (flag == LiteApi::FILESYSTEM_FILES) {
m_contextMenu->addAction(m_openEditorAct);
m_contextMenu->addMenu(m_openWithMenu);
m_contextMenu->addMenu(this->openWithMenu());
m_contextMenu->addSeparator();
m_contextMenu->addAction(m_newFileAct);
m_contextMenu->addAction(m_newFileWizardAct);
Expand Down

0 comments on commit 0a16d8b

Please sign in to comment.