summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandroColomar <colomar.6.4.3@gmail.com>2019-01-05 00:05:30 +0100
committerAlejandroColomar <colomar.6.4.3@gmail.com>2019-01-05 00:05:30 +0100
commit7b5866b2eb9392ddf31621eb342efb0900f9c370 (patch)
treeeee4a75be1ab49b7a70b9711d9a71ab19f5abe32
parent9829091db30c48050df684d34a7795485c2c63d1 (diff)
Show img after pixel_set
-rw-r--r--modules/proc/src/proc_common.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/proc/src/proc_common.cpp b/modules/proc/src/proc_common.cpp
index 96b66f1..10a8a93 100644
--- a/modules/proc/src/proc_common.cpp
+++ b/modules/proc/src/proc_common.cpp
@@ -133,6 +133,8 @@ void proc_pixel_set (int x, int y, unsigned char val)
data.y = y;
data.val = val;
img_iface_act(IMG_IFACE_ACT_PIXEL_SET, (void *)&data);
+
+ proc_show_img();
}
void proc_ROI (int x, int y, int w, int h)