rviz 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/rviz/record.rb +1 -1
- data/lib/rviz/version.rb +1 -1
- metadata +1 -1
data/lib/rviz/record.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Rviz
|
|
|
13
13
|
|
|
14
14
|
# get the anchor name used for edge link
|
|
15
15
|
def get_anchor row_name
|
|
16
|
-
"f" + self.get_anchor_id(row_name).to_s if get_anchor_id
|
|
16
|
+
"f" + self.get_anchor_id(row_name).to_s if get_anchor_id(row_name)
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
def add_row row_name, create_anchor = false, port_pos = 'n'
|
data/lib/rviz/version.rb
CHANGED