Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
1f6b2d0b
Commit
1f6b2d0b
authored
Nov 05, 2022
by
Kåre Särs
Committed by
Waqar Ahmed
Nov 07, 2022
Browse files
Do not set focus on nullptr
(cherry picked from commit
01e1673e
)
parent
bba9b4cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
addons/katebuild-plugin/plugin_katebuild.cpp
View file @
1f6b2d0b
...
...
@@ -1145,7 +1145,9 @@ void KateBuildView::slotRunAfterBuild()
out
->
setWorkingDir
(
workDir
);
out
->
runCommand
(
runCmd
);
m_win
->
activeView
()
->
setFocus
();
if
(
m_win
->
activeView
())
{
m_win
->
activeView
()
->
setFocus
();
}
}
static
void
appendPlainTextTo
(
QPlainTextEdit
*
edit
,
const
QString
&
text
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment