Skip to content

Commit

Permalink
fix highligh color, bump version to 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjinliu committed Jan 24, 2024
1 parent d58e407 commit 7d500ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tabulous/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.5.6.dev0"
__version__ = "0.5.6"

from tabulous.widgets import TableViewer, TableViewerWidget
from tabulous.core import (
Expand Down
1 change: 1 addition & 0 deletions tabulous/_qt/_table/_base/_enhanced_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ def _get_highlight_color(self):

def _set_highlight_color(self, value: QtGui.QColor):
self._highlight_color = value
self._highlight_color.setAlpha(86)
self.update()

highlightColor = Property(QtGui.QColor, _get_highlight_color, _set_highlight_color)
Expand Down

0 comments on commit 7d500ed

Please sign in to comment.