Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GUI for logging - cutelog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Avionics
Software Development
Third Party
GUI for logging - cutelog
Commits
778ff86e
Unverified
Commit
778ff86e
authored
7 years ago
by
Alexander Bus
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2 from aberrya/master
Fix for failing Log namespaces filter
parents
aeba9907
e257ae57
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
cutelog/logger_tab.py
+4
-1
4 additions, 1 deletion
cutelog/logger_tab.py
with
4 additions
and
1 deletion
cutelog/logger_tab.py
+
4
−
1
View file @
778ff86e
...
@@ -308,7 +308,10 @@ class RecordFilter(QSortFilterProxyModel):
...
@@ -308,7 +308,10 @@ class RecordFilter(QSortFilterProxyModel):
result
=
True
result
=
True
if
path
:
if
path
:
name
=
record
.
name
name
=
record
.
name
if
name
==
path
:
# name is None for record added by method add_conn_closed_record().
if
name
is
None
:
result
=
False
elif
name
==
path
:
result
=
True
result
=
True
elif
not
self
.
selection_includes_children
and
name
==
path
:
elif
not
self
.
selection_includes_children
and
name
==
path
:
result
=
True
result
=
True
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment