Mouse effects: changed defaults

This commit is contained in:
o9000 2015-11-05 13:00:19 +01:00
parent 3037d8b507
commit 96b9a46c07
10 changed files with 10 additions and 10 deletions

View file

@ -95,7 +95,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -95,7 +95,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -105,7 +105,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -95,7 +95,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -95,7 +95,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -95,7 +95,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -105,7 +105,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -95,7 +95,7 @@ disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 -10
mouse_pressed_icon_asb = 100 0 0
#-------------------------------------
# Taskbar

View file

@ -102,7 +102,7 @@ void default_panel()
panel_config.mouse_over_brightness = 10;
panel_config.mouse_pressed_alpha = 100;
panel_config.mouse_pressed_saturation = 0;
panel_config.mouse_pressed_brightness = -10;
panel_config.mouse_pressed_brightness = 0;
// append full transparency background
Background transparent_bg;

View file

@ -1410,7 +1410,7 @@ void create_panel(GtkWidget *parent)
col++;
mouse_pressed_icon_brightness = gtk_spin_button_new_with_range(-100, 100, 1);
gtk_spin_button_set_value(GTK_SPIN_BUTTON(mouse_pressed_icon_brightness), -10);
gtk_spin_button_set_value(GTK_SPIN_BUTTON(mouse_pressed_icon_brightness), 0);
gtk_widget_show(mouse_pressed_icon_brightness);
gtk_table_attach(GTK_TABLE(table), mouse_pressed_icon_brightness, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
col++;