Skip to content

Commit

Permalink
Fix TypeError in color_to_hash() (LP: #1166884)
Browse files Browse the repository at this point in the history
  • Loading branch information
jokerdino committed Apr 13, 2013
1 parent 91e1c4c commit de7546c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UnityTweakTool/section/sphagetti/compiz.py
Expand Up @@ -782,7 +782,7 @@ def on_scale_auto_raise_delay_value_changed(self, widget, udata = None):
del value

def on_colorbutton_resize_outline_color_set(self, widget, udata=None):
colorhash = gsettings.color_to_hash(self.ui['colorbutton_resize_outline'].get_color(),aplha=1)
colorhash = gsettings.color_to_hash(self.ui['colorbutton_resize_outline'].get_color(),alpha=1)
gsettings.resize.set_string('border-color', colorhash)

def on_colorbutton_resize_fill_color_set(self, widget, udata=None):
Expand Down
4 changes: 3 additions & 1 deletion debian/changelog
Expand Up @@ -9,7 +9,9 @@ unity-tweak-tool (0.0.5) UNRELEASED; urgency=low

[ Barneedhar Vigneshwar ]
* UnityTweakTool/section/unity.py
- Fix 'Can't set background blur to static' (LP: #1167343)
- Fix 'Can't set background blur to static' (LP: #1167343)
* UnityTweakTool/section/sphagetti/compiz.py
- Fix TypeError in color_to_hash() (LP: #1166884)

-- Barneedhar Vigneshwar <barneedhar@ubuntu.com> Tue, 09 Apr 2013 19:55:14 +0530

Expand Down

0 comments on commit de7546c

Please sign in to comment.