8000 RGBMatrix: nonessential change to kick Actions · domdfcoding/circuitpython@898c09c · GitHub
[go: up one dir, main page]

Skip to content

Commit 898c09c

Browse files
committed
RGBMatrix: nonessential change to kick Actions
1 parent b4c1b35 commit 898c09c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/rgbmatrix/RGBMatrix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ STATIC mp_obj_t rgbmatrix_rgbmatrix_set_brightness(mp_obj_t self_in, mp_obj_t va
284284
if (brightness < 0.0f || brightness > 1.0f) {
285285
mp_raise_ValueError(translate("Brightness must be 0-1.0"));
286286
}
287-
common_hal_rgbmatrix_rgbmatrix_set_paused(self_in, brightness <= 0);
287+
common_hal_rgbmatrix_rgbmatrix_set_paused(self, brightness <= 0);
288288

289289
return mp_const_none;
290290
}

0 commit comments

Comments
 (0)
0