mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Added a few translation templates, and disabled YAxis pixmap cache because it was glitching
This commit is contained in:
parent
9b8cc252f1
commit
6a833b4c33
@ -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;
|
||||||
|
@ -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;
|
||||||
|
@ -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
|
||||||
|
4610
Translations/sleepyhead_de.ts
Normal file
4610
Translations/sleepyhead_de.ts
Normal file
File diff suppressed because it is too large
Load Diff
4610
Translations/sleepyhead_es.ts
Normal file
4610
Translations/sleepyhead_es.ts
Normal file
File diff suppressed because it is too large
Load Diff
4610
Translations/sleepyhead_fr.ts
Normal file
4610
Translations/sleepyhead_fr.ts
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
4610
Translations/sleepyhead_se.ts
Normal file
4610
Translations/sleepyhead_se.ts
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user