mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +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
|
||||
|
||||
if (w.graphView()->usePixmapCache()) {
|
||||
if (w.invalidate_yAxisImage) {
|
||||
if (0) {//w.graphView()->usePixmapCache()) {
|
||||
/* if (w.invalidate_yAxisImage) {
|
||||
|
||||
if (!m_image.isNull()) {
|
||||
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_BLEND);
|
||||
}
|
||||
|
||||
*/
|
||||
} else {
|
||||
if (height<0) return;
|
||||
if (height>2000) return;
|
||||
|
@ -67,7 +67,7 @@ QString GetAppRoot()
|
||||
#endif
|
||||
|
||||
if (HomeAppRoot.isEmpty())
|
||||
HomeAppRoot=desktopFolder+"/"+AppRoot;
|
||||
HomeAppRoot=desktopFolder+QDir::separator()+AppRoot;
|
||||
|
||||
return HomeAppRoot;
|
||||
}
|
||||
@ -91,10 +91,10 @@ Preferences::Preferences(QString name,QString filename)
|
||||
}
|
||||
|
||||
if (filename.isEmpty()) {
|
||||
p_filename=GetAppRoot()+"/"+p_name+xmlext;
|
||||
p_filename=GetAppRoot()+QDir::separator()+p_name+xmlext;
|
||||
} else {
|
||||
if (!filename.contains("/")) {
|
||||
p_filename=GetAppRoot()+"/";
|
||||
if (!filename.contains(QDir::separator())) {
|
||||
p_filename=GetAppRoot()+QDir::separator();
|
||||
} else p_filename="";
|
||||
|
||||
p_filename+=filename;
|
||||
|
@ -185,7 +185,10 @@ FORMS += \
|
||||
|
||||
TRANSLATIONS += \
|
||||
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.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