diff --git a/src/gui/qt/Vera.ttf b/src/gui/qt/Vera.ttf
new file mode 100644
index 00000000..58cd6b5e
Binary files /dev/null and b/src/gui/qt/Vera.ttf differ
diff --git a/src/gui/qt/VeraBd.ttf b/src/gui/qt/VeraBd.ttf
new file mode 100644
index 00000000..51d6111d
Binary files /dev/null and b/src/gui/qt/VeraBd.ttf differ
diff --git a/src/gui/qt/mainwindow.ui b/src/gui/qt/mainwindow.ui
index 871e9bd8..123c34cd 100644
--- a/src/gui/qt/mainwindow.ui
+++ b/src/gui/qt/mainwindow.ui
@@ -3123,11 +3123,6 @@
0
-
-
- 9
-
-
-
@@ -3215,11 +3210,6 @@
0
-
-
- 9
-
-
@@ -3528,11 +3518,6 @@
0
-
-
- 9
-
-
@@ -3841,11 +3826,6 @@
0
-
-
- 9
-
-
diff --git a/src/gui/qt/mainwindowimpl.cpp b/src/gui/qt/mainwindowimpl.cpp
index ea625df6..5f84e7ee 100755
--- a/src/gui/qt/mainwindowimpl.cpp
+++ b/src/gui/qt/mainwindowimpl.cpp
@@ -147,13 +147,6 @@ mainWindowImpl::mainWindowImpl(QMainWindow *parent, const char *name)
inactive.setRgb(83,141,107);
highlight.setRgb(151,214,109);
- //Schriftart laden
- cout << "schriftart läd: " << QFontDatabase::addApplicationFont ("src/gui/qt/font.ttf") << endl;
- QFont tmpFont("Tuffy",9);
- QApplication::setFont(tmpFont);
-
-
-
//firstCallNewGame Test init
firstCallNewGame = TRUE;
diff --git a/src/pokerth.cpp b/src/pokerth.cpp
index cc872fbb..c2b70618 100755
--- a/src/pokerth.cpp
+++ b/src/pokerth.cpp
@@ -20,8 +20,8 @@
/////// can be removed for non-qt-guis ////////////
#include
-// #include
-// #include
+#include
+#include
///////////////////////////////////////////////////
#include "session.h"
@@ -34,9 +34,16 @@ int main( int argc, char **argv )
srand( time(0) );
+
/////// can be removed for non-qt-guis ////////////
QApplication a( argc, argv );
+ //Schriftart laden
+ QFontDatabase::addApplicationFont ("src/gui/qt/Vera.ttf");
+ QFont tmpFont("Bitstream Vera Sans",9);
+ QApplication::setFont(tmpFont);
+
+
Q_INIT_RESOURCE(deck);
///////////////////////////////////////////////////