diff options
Diffstat (limited to 'src/ui/mediaui.c')
-rw-r--r-- | src/ui/mediaui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/mediaui.c b/src/ui/mediaui.c index f0070688..2ddebb57 100644 --- a/src/ui/mediaui.c +++ b/src/ui/mediaui.c | |||
@@ -104,7 +104,7 @@ static int drawSevenSegmentTime_(iInt2 pos, int color, int align, int seconds) { | |||
104 | if (align == right_Alignment) { | 104 | if (align == right_Alignment) { |
105 | pos.x -= size.x; | 105 | pos.x -= size.x; |
106 | } | 106 | } |
107 | drawRange_Text(font, addY_I2(pos, gap_UI / 2), color, range_String(&num)); | 107 | drawRange_Text(font, addY_I2(pos, 0/*gap_UI / 2*/), color, range_String(&num)); |
108 | deinit_String(&num); | 108 | deinit_String(&num); |
109 | return size.x; | 109 | return size.x; |
110 | } | 110 | } |
@@ -316,7 +316,7 @@ void draw_DownloadUI(const iDownloadUI *d, iPaint *p) { | |||
316 | isFinished ? uiTextAction_ColorId : uiTextDim_ColorId, | 316 | isFinished ? uiTextAction_ColorId : uiTextDim_ColorId, |
317 | cstr_Lang(isFinished ? "media.download.complete" : "media.download.warnclose")); | 317 | cstr_Lang(isFinished ? "media.download.complete" : "media.download.warnclose")); |
318 | const int x2 = right_Rect(rect); | 318 | const int x2 = right_Rect(rect); |
319 | drawSevenSegmentBytes_MediaUI(uiLabel_FontId, init_I2(x2, y1), | 319 | drawSevenSegmentBytes_MediaUI(uiContent_FontId, init_I2(x2, y1), |
320 | uiTextStrong_ColorId, uiTextDim_ColorId, | 320 | uiTextStrong_ColorId, uiTextDim_ColorId, |
321 | info.numBytes); | 321 | info.numBytes); |
322 | const iInt2 pos = init_I2(x2, y2); | 322 | const iInt2 pos = init_I2(x2, y2); |