Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Sep 30, 2024
1 parent 7a4ad87 commit 857e691
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/screencast_keys/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ def draw(self, _):

layout.label(text="Experimental:")
col = layout.column()
col.prop(self, "get_event_aggressively") # extensions.blender.org: Delete line
col.prop(self, "get_event_aggressively") # extensions.blender.org: Delete line # noqa # pylint: disable=C0301
col.prop(self, "auto_save")

layout.separator()
Expand Down
2 changes: 1 addition & 1 deletion src/screencast_keys/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def draw(self, _):
_ = sp.column() # spacer.
sp = sp.split(factor=1.0)
c = sp.column()
c.prop(prefs, "get_event_aggressively") # extensions.blender.org: Delete line
c.prop(prefs, "get_event_aggressively") # extensions.blender.org: Delete line # noqa # pylint: disable=C0301


class SK_PT_ScreencastKeys_Overlay(bpy.types.Panel):
Expand Down

0 comments on commit 857e691

Please sign in to comment.