Quote:
Originally Posted by Terisa de morgan
That's true. I've tried it but I don't have the three rows. What should I change?
|
I think the Aura's screen is 10 pixels shorter than the Glo's, so you would need to reduce the replacement values in the patch by a total of 10 (maybe 8 would be enough, there might be a few spare pixels in the Glo's layout.)
I think if you reduce the search bar or footer any futher they will be cut off, but you can reduce the space between the search bar and tiles, and between tiles. But there is not going to be much margin left.
This is a version of the `Compact homescreen layout` patch with the margins reduced by an extra 10 pixels:
Spoiler:
Code:
<Patch>
patch_name = `Compact homepage layout (Aura)`
patch_enable = `yes`
#DragonHomePageView (Search bar height)
replace_string = CDEE88, `min-height:100px;`, `min-height:090px;`
replace_string = CDEE9B, `max-height:100px;`, `max-height:090px;`
#QWidget (Space below search bar)
replace_string = CDF021, `min-height:40px;`, `min-height:02px;`
replace_string = CDF033, `max-height:40px;`, `max-height:02px;`
#MultiColumnTileView (Space between tiles)
replace_string = CDF1D1, `horizontalSpacing:10;`, `horizontalSpacing:02;`
replace_string = CDF1F2, `verticalSpacing:10;`, `verticalSpacing:02;`
#footer (Footer menu bar height)
replace_string = CDF61E, `min-height:95px;`, `min-height:68px;`
replace_string = CDF630, `max-height:95px;`, `max-height:68px;`
#PhoenixSmallRecentBookTile
replace_string = CE63C4, `percentFontSize:28;`, `percentFontSize:22;`
replace_string = CE63E3, `progressFontSize:22;`, `progressFontSize:22;`
#RecentBookTile
replace_string = CE98C3, `percentFontSize:28;`, `percentFontSize:22;`
replace_string = CE98E8, `progressFontSize:22;`, `progressFontSize:22;`
</Patch>