Skip to content

Commit

Permalink
[Fix] rosbag split size in runtime manager (#1817)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsudome-r authored and kfunaoka committed Jan 12, 2019
1 parent 5b93f7c commit 0225003
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2988,7 +2988,7 @@ def size_arg_get(self):
mb = 0
if mb <= 0:
tc.SetValue('')
return [ '--size=' + str(int(mb * 1024 * 1024)) ] if mb > 0 else []
return [ '--size=' + str(int(mb)) ] if mb > 0 else []

def set_size_gdic(dlg, gdic={}):
(w, h) = dlg.GetSize()
Expand Down

0 comments on commit 0225003

Please sign in to comment.