mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fixed string formatting bug
This commit is contained in:
parent
11adc19e80
commit
4e55f62fd5
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ namespace LogViewer
|
||||||
g.FillRect(0, 0, mWidth, mHeight);
|
g.FillRect(0, 0, mWidth, mHeight);
|
||||||
|
|
||||||
var lineAndColumn = gApp.mBoard.mDocEdit.mEditWidgetContent.CursorLineAndColumn;
|
var lineAndColumn = gApp.mBoard.mDocEdit.mEditWidgetContent.CursorLineAndColumn;
|
||||||
g.DrawString(scope String()..AppendF("Ln {0}", lineAndColumn.mLine + 1), mWidth - 160, 2);
|
g.DrawString(scope $"Ln {lineAndColumn.mLine + 1}", mWidth - 160, 2);
|
||||||
g.DrawString(using System;("Col {0}", lineAndColumn.mColumn + 1), mWidth - 80, 2);
|
g.DrawString(scope $"Col {lineAndColumn.mColumn + 1}", mWidth - 80, 2);
|
||||||
|
|
||||||
if ((gApp.mBoard.mFilterDirtyCountdown != 0) || (gApp.mBoard.mRefreshing))
|
if ((gApp.mBoard.mFilterDirtyCountdown != 0) || (gApp.mBoard.mRefreshing))
|
||||||
g.DrawString("Refreshing", 8, 2);
|
g.DrawString("Refreshing", 8, 2);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue