X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/667418327423ba116d24751926a95a2f1235849c..0d72fb12dc9a570be45e2f25320ac49f604c3ed2:/Constructor/src/or.cpp diff --git a/Constructor/src/or.cpp b/Constructor/src/or.cpp index 1d1534b..60f8eed 100644 --- a/Constructor/src/or.cpp +++ b/Constructor/src/or.cpp @@ -20,8 +20,12 @@ Or::~Or() bool Or::on_button_press_event(GdkEventButton *event) { - if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) + if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) { + if (CItem::logic_connect) + CItem::gate_id = ID; combo_entry->set_text(name); + WorkPlace::pointed = ID; + } if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){ image = null; @@ -48,6 +52,7 @@ bool Or::on_button_press_event(GdkEventButton *event) menu_popup.popup(event->button, event->time); return true; //It has been handled. } + workplace->queue_draw(); return true; }