diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-05 16:13:05 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-05 16:13:05 -0500 |
commit | 531bec5517bfcef07b05ce6325220cb3d235abfe (patch) | |
tree | 0ef9716d169286e575604e90244bd356a54faf83 | |
parent | f2f8522d856d1807750ebf2d897d547734e9c55e (diff) |
fix background as foreground
-rwxr-xr-x | SelectiveGenomeAmplificationUI | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SelectiveGenomeAmplificationUI b/SelectiveGenomeAmplificationUI index b6a2fa6..9c5e1c6 100755 --- a/SelectiveGenomeAmplificationUI +++ b/SelectiveGenomeAmplificationUI @@ -82,7 +82,7 @@ def variables_to_string(variables): ret = ret + variable + "=\"" + variables[variable] + "\" " ret = ret + "foreground=\"" + foreground + "\" " - ret = ret + "background=\"" + foreground + "\" " + ret = ret + "background=\"" + background + "\" " return ret def run(variables_as_a_string): |