]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/src/item_exclusa.cpp
Se agrega la consante INFINITO pendiente desde el primer commit :-)
[z.facultad/75.42/plaqui.git] / Client / src / item_exclusa.cpp
index d318ac4cc610a4ec79d62df66f0f8f432ac1a7a7..4a3e7b40b43db32073cef67222bf0ff61086cd90 100644 (file)
@@ -37,19 +37,21 @@ ViewExclusa::~ViewExclusa()
 
 bool ViewExclusa::on_image_expose_event(GdkEventExpose *e)
 {
 
 bool ViewExclusa::on_image_expose_event(GdkEventExpose *e)
 {
-       Glib::RefPtr<Gdk::Colormap> colormap = image.get_colormap();
+       Glib::RefPtr<Gdk::Colormap> colormap = Gtk::Widget::get_default_colormap();
        colormap->alloc_color(color);
        gc->set_foreground(color);
        gc->set_background(color);
        int w,h;
        w = image.get_width();
        h = image.get_height();
        colormap->alloc_color(color);
        gc->set_foreground(color);
        gc->set_background(color);
        int w,h;
        w = image.get_width();
        h = image.get_height();
+       if (actual_flow == 0) return true;
        switch (m_or) {
                case 1: // Vertical
        switch (m_or) {
                case 1: // Vertical
-                       image.get_window()->draw_rectangle(gc, 1, w/2-2, 0, 4, h);
+                       image.get_window()->draw_rectangle(gc, 1, w/2-3, 0, 6, h);
                break;
                case 0: // Horizontal
                break;
                case 0: // Horizontal
-                       image.get_window()->draw_rectangle(gc, 1, 0, h/2-2, w, 4);
+                       image.get_window()->draw_rectangle(gc, 1, 0, h/2-3, w, 6);
        }
        }
+       return true;
 }
 
 }