diff options
author | jblum | 2008-09-15 03:53:04 +0000 |
---|---|---|
committer | jblum | 2008-09-15 03:53:04 +0000 |
commit | 3b6b910c2193f7ed735b242d9ba682b41e1beff7 (patch) | |
tree | 8ba34279f1c75806f1593a008dd3dd98370d54bc /grc/src/platforms/gui/Constants.py | |
parent | 5c071b07710d2c4e127d321faba59b2a7b1d7c8d (diff) | |
download | gnuradio-3b6b910c2193f7ed735b242d9ba682b41e1beff7.tar.gz gnuradio-3b6b910c2193f7ed735b242d9ba682b41e1beff7.tar.bz2 gnuradio-3b6b910c2193f7ed735b242d9ba682b41e1beff7.zip |
port dimensions based on label text
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9577 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'grc/src/platforms/gui/Constants.py')
-rw-r--r-- | grc/src/platforms/gui/Constants.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/grc/src/platforms/gui/Constants.py b/grc/src/platforms/gui/Constants.py index b2e9bfed5..00899cb78 100644 --- a/grc/src/platforms/gui/Constants.py +++ b/grc/src/platforms/gui/Constants.py @@ -21,13 +21,12 @@ #label constraint dimensions LABEL_SEPARATION = 3 -LABEL_PADDING_WIDTH = 9 -LABEL_PADDING_HEIGHT = 9 +BLOCK_LABEL_PADDING = 7 +PORT_LABEL_PADDING = 2 #port constraint dimensions PORT_SEPARATION = 17 -PORT_HEIGHT = 15 -PORT_WIDTH = 25 PORT_BORDER_SEPARATION = 9 +PORT_MIN_WIDTH = 20 #fonts PARAM_LABEL_FONT = 'Sans 9.5' PARAM_FONT = 'Sans 7.5' |