mailr20923 - in /branches/relax_disp: ./ lib/text/gui.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 06, 2013 - 19:39:
Author: bugman
Date: Fri Sep  6 19:39:31 2013
New Revision: 20923

URL: http://svn.gna.org/viewcvs/relax?rev=20923&view=rev
Log:
Merged revisions 20922 via svnmerge from 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/trunk

........
  r20922 | bugman | 2013-09-06 19:38:03 +0200 (Fri, 06 Sep 2013) | 3 lines
  
  Added some Mac OS X GUI string fixes for missing unicode characters to 
lib.text.gui.
........

Modified:
    branches/relax_disp/   (props changed)
    branches/relax_disp/lib/text/gui.py

Propchange: branches/relax_disp/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Fri Sep  6 19:39:31 2013
@@ -1,1 +1,1 @@
-/trunk:1-20919
+/trunk:1-20922

Modified: branches/relax_disp/lib/text/gui.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/lib/text/gui.py?rev=20923&r1=20922&r2=20923&view=diff
==============================================================================
--- branches/relax_disp/lib/text/gui.py (original)
+++ branches/relax_disp/lib/text/gui.py Fri Sep  6 19:39:31 2013
@@ -28,10 +28,13 @@
 # relax module imports.
 from compat import SYSTEM, u
 
-# Windows.
+# OS Flags.
 win = False
+mac = False
 if SYSTEM == 'Windows':
     win = True
+if SYSTEM == 'Darwin':
+    mac = True
 
 # Relaxation data GUI text elements.
 r1 = u("R\u2081")
@@ -56,6 +59,9 @@
     local_tm = u("local \u03C4m")
     tm = u("\u03C4m")
     rex = "Rex"
+if mac:
+    local_tm = u("local \u03C4m")
+    tm = u("\u03C4m")
 
 # Relaxation dispersion GUI text elements.
 dw = u("d\u03C9")




Related Messages


Powered by MHonArc, Updated Fri Sep 06 20:00:02 2013