Skip to content

Commit

Permalink
fix(UI): minor UI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
t00m committed May 2, 2024
1 parent 84a36d4 commit b736851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MiAZ/frontend/desktop/widgets/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def _update_dropdown_date(self):
def _setup_columnview(self):
self.view = MiAZColumnViewWorkspace(self.app)
self.app.add_widget('workspace-view', self.view)
self.view.get_style_context().add_class(class_name='caption')
# ~ self.view.get_style_context().add_class(class_name='caption')
self.view.set_filter(self._do_filter_view)
frmView = self.factory.create_frame(hexpand=True, vexpand=True)
frmView.set_child(self.view)
Expand Down Expand Up @@ -700,7 +700,7 @@ def _do_filter_view(self, item, filter_list_model):
self.pending = False
if item.active is False:
self.pending = True
self.log.debug("(count %4d) Item '%s' pending of review? %s", self.pending, item.title, item.active)
# ~ self.log.debug("(count %4d) Item '%s' pending of review? %s", self.pending, item.title, item.active)

if self.uncategorized:
return item.active is False
Expand Down

0 comments on commit b736851

Please sign in to comment.