Skip to content

Commit

Permalink
fix compile warning; fill variable
Browse files Browse the repository at this point in the history
  • Loading branch information
game-stop committed Jun 16, 2019
1 parent 8e1a9c5 commit 63565bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion veejay-current/veejay-client/src/vj-api.c
Original file line number Diff line number Diff line change
Expand Up @@ -8361,7 +8361,7 @@ void vj_gui_activate_stylesheet(vj_gui_t *gui)
GdkRGBA bg,col,border;
GtkStateFlags context_state = gtk_style_context_get_state(sc);
vj_gtk_context_get_color(sc, "background-color", context_state, &bg);
vj_gtk_context_get_color(sc, "border-color", context_state, &bg);
vj_gtk_context_get_color(sc, "border-color", context_state, &border);
gtk_style_context_get_color(sc, context_state, &col );

gtk3_curve_set_color_background_rgba (GTK_WIDGET(gui->curve), bg.red, bg.green, bg.blue, 1.0);
Expand Down

0 comments on commit 63565bb

Please sign in to comment.