diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-07-12 09:51:18 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-07-12 09:51:18 -0400 |
commit | fddb2ce2b0191aaf509895d362154ae173312a22 (patch) | |
tree | b0b3b2301611e09eaf0ba23802e9fb2ad478f43c /grc/gui/Element.py | |
parent | 4a003bb6329cbe63debe8fbfca91747e6e1225f1 (diff) | |
parent | 9f4a4eae44cfbe146fd32b3015cd3b014673ed47 (diff) |
Merge remote-tracking branch 'gnuradio-wg-grc/grc_port_view_options'
Diffstat (limited to 'grc/gui/Element.py')
-rw-r--r-- | grc/gui/Element.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/grc/gui/Element.py b/grc/gui/Element.py index c43f0eb35c..95a4e2edab 100644 --- a/grc/gui/Element.py +++ b/grc/gui/Element.py @@ -262,3 +262,9 @@ class Element(object): if rotation not in POSSIBLE_ROTATIONS: raise Exception('"%s" is not one of the possible rotations: (%s)'%(rotation, POSSIBLE_ROTATIONS)) self.rotation = rotation + + def mouse_over(self): + pass + + def mouse_out(self): + pass |