Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
remove context help popup on console opening
- Loading branch information
Showing
with
0 additions
and
6 deletions.
-
+0
−6
python/console/console.py
|
@@ -56,12 +56,6 @@ def show_console(): |
|
|
if _console.isVisible(): |
|
|
_console.activate() |
|
|
|
|
|
# Shows help on first launch of the console |
|
|
settings = QgsSettings() |
|
|
if settings.value('pythonConsole/contextHelpOnFirstLaunch', True, type=bool): |
|
|
QgsHelp.openHelp("plugins/python_console.html") |
|
|
settings.setValue('pythonConsole/contextHelpOnFirstLaunch', False) |
|
|
|
|
|
return _console |
|
|
|
|
|
|
|
|