Moode Forum
[PROBLEM] Tag View Albums font too big - Printable Version

+- Moode Forum (https://moodeaudio.org/forum)
+-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3)
+--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7)
+--- Thread: [PROBLEM] Tag View Albums font too big (/showthread.php?tid=6628)

Pages: 1 2


Tag View Albums font too big - TamedShrew - 06-19-2024

Hello,

I've noticed in v9.0.2 that in the Tag view the Album details are in a bigger font than in the Artist / Genre columns. 

This is for the Official 7" touchscreen. It works fine on my laptop browser.

I don't think I've changed any settings to do with this! I've done a refresh and it persists.

Attached is a rather bad photo I took on my phone.

Best regards,
Nick


RE: Tag View Albums font too big - Tim Curtis - 06-19-2024

I'm not seeing that in the simulator. Let's see what the viewport size is on your touch.

Menu, Refresh after running the command
Code:
# Turn viewport reporting ON
moodeutl -q "update cfg_system set value='viewport' where param='pkgid_suffix'"

# Turn viewport reporting OFF
moodeutl -q "update cfg_system set value='' where param='pkgid_suffix'"



RE: Tag View Albums font too big - TamedShrew - 06-19-2024

(06-19-2024, 12:01 PM)Tim Curtis Wrote: I'm not seeing that in the simulator. Let's see what the viewport size is on your touch.

Menu, Refresh after running the command
Code:
# Turn viewport reporting ON
moodeutl -q "update cfg_system set value='viewport' where param='pkgid_suffix'"

# Turn viewport reporting OFF
moodeutl -q "update cfg_system set value='' where param='pkgid_suffix'"

Thanks for the quick reply.

I've tried the first command (SSH), but get this (see attachment).

I'm not much cop at linux, but the SQL syntax looks ok to me.


RE: Tag View Albums font too big - TamedShrew - 06-19-2024

The Official Raspberry Pi 7" touchscreen is supposed to have a resolution of 800 x 480. When simulated at this resolution I don't get the problem.


RE: Tag View Albums font too big - Tim Curtis - 06-19-2024

Yes the res is 800x480 but Browsers use whats called the viewport size.

In moode css code the two viewport sizes for the Pi Touch screen are:

Code:
/*
// Pi 7" Touch
*/
/* 443 = Square pixel, 479 = Default pixel */
@media (height:443px) and (width:799px),
       (height:479px) and (width:799px) {



RE: Tag View Albums font too big - TamedShrew - 06-19-2024

(06-19-2024, 01:38 PM)Tim Curtis Wrote: Yes the res is 800x480 but Browsers use whats called the viewport size.

In moode css code the two viewport sizes for the Pi Touch screen are:

Code:
/*
// Pi 7" Touch
*/
/* 443 = Square pixel, 479 = Default pixel */
@media (height:443px) and (width:799px),
       (height:479px) and (width:799px) {

Well, it looks like the 799 x 443 is the one it has a problem with then. Must be the change from "Square Pixels" on the touchscreen that's triggered it.


RE: Tag View Albums font too big - Tim Curtis - 06-19-2024

I'm a bit confused. There is no option in 902 for configuring Square Pixels on the Touch.


RE: Tag View Albums font too big - TamedShrew - 06-19-2024

(06-19-2024, 02:18 PM)Tim Curtis Wrote: I'm a bit confused. There is no option in 902 for configuring Square Pixels on the Touch.

Yes, it struck me as odd too! I can see when I simulate the resolutions that 799 x 443 has the problem and 799 x 479 does not. It suggests to me that the touch screen is now running in 799 x 443 where before it was running in 799 x 479.


RE: Tag View Albums font too big - Tim Curtis - 06-19-2024

Try the comand again, it worked fine on my end

Code:
moodeutl -q "update cfg_system set value='viewport' where param='pkgid_suffix'"



RE: Tag View Albums font too big - TamedShrew - 06-19-2024

(06-19-2024, 03:16 PM)Tim Curtis Wrote: Try the comand again, it worked fine on my end

Code:
moodeutl -q "update cfg_system set value='viewport' where param='pkgid_suffix'"

It comes up with viewport 799 x 479, P/R=1

Now I am confused!