diff options
author | Leandro Melo <leandro.melo@nokia.com> | 2010-09-20 11:47:01 +0200 |
---|---|---|
committer | Leandro Melo <leandro.melo@nokia.com> | 2010-09-20 11:48:46 +0200 |
commit | 4d0176cd740eb76b4e7e19b17950339ff629d05f (patch) | |
tree | 813a8dc5ad9479f66d2f7405ce63535239152666 /src/plugins/texteditor/plaintexteditor.cpp | |
parent | 58b800218bd0ae3b179f2b4ecaaa97f39d3268d3 (diff) | |
download | qt-creator-4d0176cd740eb76b4e7e19b17950339ff629d05f.tar.gz |
Generic highlighter: Show/hide info bar whenever the editor is configured.
Diffstat (limited to 'src/plugins/texteditor/plaintexteditor.cpp')
-rw-r--r-- | src/plugins/texteditor/plaintexteditor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/texteditor/plaintexteditor.cpp b/src/plugins/texteditor/plaintexteditor.cpp index 56be20f9f5..67b99faabf 100644 --- a/src/plugins/texteditor/plaintexteditor.cpp +++ b/src/plugins/texteditor/plaintexteditor.cpp @@ -214,6 +214,8 @@ void PlainTextEditor::configure(const Core::MimeType &mimeType) // because Kate recommends to configure indentation through another feature. Maybe we should // provide something similar in Creator? For now, only normal indentation is supported. m_indenter.reset(new NormalIndenter); + + emit configured(editableInterface()); } bool PlainTextEditor::isMissingSyntaxDefinition() const |