Skip to content

Commit

Permalink
Merge pull request #958 from tinlizard/master
Browse files Browse the repository at this point in the history
Fix TypeError in reconfigure() of terminal.py (line 753)
  • Loading branch information
mattrose authored Jan 18, 2025
2 parents 5d0a8c5 + a8c7043 commit 75fa2f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terminatorlib/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ def reconfigure(self, _widget=None):
self.bgcolor.parse(self.config['background_color'])

if self.config['background_type'] in ('transparent', 'image'):
self.bgcolor.alpha = self.config['background_darkness']
self.bgcolor.alpha = float(self.config['background_darkness'])
else:
self.bgcolor.alpha = 1

Expand Down

0 comments on commit 75fa2f9

Please sign in to comment.