Added a few translation templates, and disabled YAxis pixmap cache because it was glitching

This commit is contained in:
Mark Watkins 2013-09-10 20:14:54 +10:00
parent 9b8cc252f1
commit 6a833b4c33
8 changed files with 20113 additions and 1317 deletions

View File

@ -142,8 +142,8 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height)
//Todo: clean this up as there is a lot of duplicate code between the sections //Todo: clean this up as there is a lot of duplicate code between the sections
if (w.graphView()->usePixmapCache()) { if (0) {//w.graphView()->usePixmapCache()) {
if (w.invalidate_yAxisImage) { /* if (w.invalidate_yAxisImage) {
if (!m_image.isNull()) { if (!m_image.isNull()) {
w.graphView()->deleteTexture(m_textureID); w.graphView()->deleteTexture(m_textureID);
@ -262,7 +262,7 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height)
glDisable(GL_TEXTURE_2D); glDisable(GL_TEXTURE_2D);
glDisable(GL_BLEND); glDisable(GL_BLEND);
} }
*/
} else { } else {
if (height<0) return; if (height<0) return;
if (height>2000) return; if (height>2000) return;

View File

@ -67,7 +67,7 @@ QString GetAppRoot()
#endif #endif
if (HomeAppRoot.isEmpty()) if (HomeAppRoot.isEmpty())
HomeAppRoot=desktopFolder+"/"+AppRoot; HomeAppRoot=desktopFolder+QDir::separator()+AppRoot;
return HomeAppRoot; return HomeAppRoot;
} }
@ -91,10 +91,10 @@ Preferences::Preferences(QString name,QString filename)
} }
if (filename.isEmpty()) { if (filename.isEmpty()) {
p_filename=GetAppRoot()+"/"+p_name+xmlext; p_filename=GetAppRoot()+QDir::separator()+p_name+xmlext;
} else { } else {
if (!filename.contains("/")) { if (!filename.contains(QDir::separator())) {
p_filename=GetAppRoot()+"/"; p_filename=GetAppRoot()+QDir::separator();
} else p_filename=""; } else p_filename="";
p_filename+=filename; p_filename+=filename;

View File

@ -185,7 +185,10 @@ FORMS += \
TRANSLATIONS += \ TRANSLATIONS += \
Translations/sleepyhead_nl.ts \ Translations/sleepyhead_nl.ts \
Translations/sleepyhead_fr.ts Translations/sleepyhead_fr.ts \
Translations/sleepyhead_se.ts \
Translations/sleepyhead_de.ts \
Translations/sleepyhead_es.ts
RESOURCES += \ RESOURCES += \
Resources.qrc Resources.qrc

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff