[Kstars-devel] KDE/kdeedu/kstars/kstars

Jason Harris kstars at 30doradus.org
Sat Feb 2 02:18:53 CET 2008


SVN commit 769768 by harris:

Adding Telrad FOV indicator to the list of defaults (Wish #111526).
Can't backport, added a string.

BUG: 111526
CCMAIL: kstars-devel at kde.org



 M  +2 -2      fov.cpp  
 M  +3 -2      kstarsinit.cpp  


--- trunk/KDE/kdeedu/kstars/kstars/fov.cpp #769767:769768
@@ -113,8 +113,8 @@
         }
     case 3: { //Bullseye
             int s1 = int( pixelsize );
-            int s2 = 2*int( pixelsize );
-            int s3 = 3*int( pixelsize );
+            int s2 = 4*int( pixelsize );
+            int s3 = 8*int( pixelsize );
 
             int x0 = w/2;  int y0 = h/2;
             int x1 = x0 - s1/2;  int y1 = y0 - s1/2;
--- trunk/KDE/kdeedu/kstars/kstars/kstarsinit.cpp #769767:769768
@@ -489,8 +489,8 @@
 }
 
 void KStars::initFOV() {
-    //Read in the user's fov.dat and populate the FOV menu with its symbols.  If no fov.dat exists, populate
-    //create a default version.
+    //Read in the user's fov.dat and populate the FOV menu with its symbols.  
+    //If no fov.dat exists, create a default version.
     QFile f;
     QStringList fields;
     QString nm;
@@ -507,6 +507,7 @@
             QTextStream ostream(&f);
             ostream << i18nc( "Do not use a field-of-view indicator", "No FOV" ) <<  ":0.0:0:#AAAAAA" << endl;
             ostream << i18nc( "use field-of-view for binoculars", "7x35 Binoculars" ) << ":558:1:#AAAAAA" << endl;
+						ostream << i18nc( "use a Telrad field-of-view indicator", "Telrad" ) << ":30:3:#AA0000" << endl;
             ostream << i18nc( "use 1-degree field-of-view indicator", "One Degree" ) << ":60:2:#AAAAAA" << endl;
             ostream << i18nc( "use HST field-of-view indicator", "HST WFPC2" ) << ":2.4:0:#AAAAAA" << endl;
             ostream << i18nc( "use Radiotelescope HPBW", "30m at 1.3cm" ) << ":1.79:1:#AAAAAA" << endl;


More information about the Kstars-devel mailing list