Skip to content

Commit

Permalink
override cursor for tabular preview
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzoic committed Apr 26, 2024
1 parent 3ad823c commit 0aa0d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion countess/gui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def show_preview_subframe(self):
else:
try:
df = concat_dataframes(self.node.result)
self.preview_subframe = TabularDataFrame(self.frame)
self.preview_subframe = TabularDataFrame(self.frame, cursor='arrow')
self.preview_subframe.set_dataframe(df)
self.preview_subframe.set_sort_order(self.node.sort_column or 0, self.node.sort_descending)
self.preview_subframe.set_callback(self.preview_changed_callback)
Expand Down

0 comments on commit 0aa0d64

Please sign in to comment.