mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
Remove input enabled check for 'is-focused' class
vim-mode-plus relies on this behavior
This commit is contained in:
@@ -823,7 +823,7 @@ class TextEditorComponent {
|
||||
|
||||
const oldClassList = this.classList
|
||||
const newClassList = ['editor']
|
||||
if (this.focused && this.isInputEnabled()) newClassList.push('is-focused')
|
||||
if (this.focused) newClassList.push('is-focused')
|
||||
if (model.isMini()) newClassList.push('mini')
|
||||
for (var i = 0; i < model.selections.length; i++) {
|
||||
if (!model.selections[i].isEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user