Skip to content

Commit

Permalink
Remove "top" set by jQuery's "resizable"
Browse files Browse the repository at this point in the history
  • Loading branch information
laffra committed Nov 21, 2023
1 parent 06555f0 commit 27d5d84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ltk/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,9 @@ def filter_rows(self):
row.css("display", "block" if visible else "none")
if visible:
height += 32
find(".ltk-log-container").animate(to_js({ "height": min(250, height) }))
find(".ltk-log-container") \
.css("top", None) \
.animate(to_js({ "height": min(250, height) }))

def clear(self):
find(".ltk-log-row").remove()
Expand Down

0 comments on commit 27d5d84

Please sign in to comment.