X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/a2567db67c5d678c5e71bfadc555f8319ee835a8..b804b4bd1f222976f6a1fb3156fede8e26e32d3d:/Client/src/item_conduct.cpp?ds=sidebyside diff --git a/Client/src/item_conduct.cpp b/Client/src/item_conduct.cpp index e203b2f..8f070a2 100644 --- a/Client/src/item_conduct.cpp +++ b/Client/src/item_conduct.cpp @@ -30,16 +30,15 @@ bool ViewConduct::on_image_expose_event(GdkEventExpose *e) int w,h; w = image.get_width(); h = image.get_height(); + if (actual_flow == 0) return true; switch (m_or) { case 0: // Vertical - image.get_window()->draw_rectangle(gc, 1, w/2-2, 0, 4, h); - gc->set_foreground(blanco); - image.get_window()->draw_rectangle(gc, 0, w/2-3, 0, 6, h); + image.get_window()->draw_rectangle(gc, 1, w/2-3, 0, 6, h); break; case 1: // Horizontal - image.get_window()->draw_rectangle(gc, 1, 0, h/2-2, h, 4); - gc->set_foreground(blanco); - image.get_window()->draw_rectangle(gc, 0, 0, h/2-3, h, 6); + image.get_window()->draw_rectangle(gc, 1, 0, h/2-3, w, 6); } + return true; } +