Skip to content

Commit

Permalink
Urgs fix stupid mistake
Browse files Browse the repository at this point in the history
Added by accident,important, android, font dpi needs to be on !
  • Loading branch information
Consti10 authored Dec 4, 2023
1 parent 3abc4fb commit f390b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ int main(int argc, char *argv[]) {
// RPI and ROCK - disable font dpi. The user has to scale manually when using displays
// (Bigger than) 640x480 according to its preferences. On rpi, auto scale is just bugged,
// nothing more to say.
if(QOpenHD::instance().is_platform_rpi() || QOpenHD::instance().is_platform_rock() || true){
if(QOpenHD::instance().is_platform_rpi() || QOpenHD::instance().is_platform_rock()){
static constexpr auto TAG_QOPENHD_INITIAL_FONT_DPI_HAS_BEEN_SET="qopenhd_initial_font_dpi_has_been_set";
if(!settings.value(TAG_QOPENHD_INITIAL_FONT_DPI_HAS_BEEN_SET,false).toBool()){
qDebug()<<"RPI/ROCK: Disable font dpi by default";
Expand Down

0 comments on commit f390b4c

Please sign in to comment.