Skip to content

Commit

Permalink
[NUI] PenWave Coding rule 2
Browse files Browse the repository at this point in the history
  • Loading branch information
JoogabYun committed Jan 14, 2025
1 parent f824d51 commit 4c0bdb6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Tizen.NUI.PenWave.Sample/src/PenWaveSample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace PenWaveSample
class Program : NUIApplication
{
public static Program app;
private Window mWindow;
private Window _window;
private PenWaveToolPicker mToolPickerView;
private PenWaveCanvas canvasView;
private ImageView thumbnailView;
Expand Down Expand Up @@ -202,10 +202,10 @@ private void Buttons()

private void InitializeView()
{
mWindow = GetDefaultWindow();
mWindow.BackgroundColor = Color.White;
_window = GetDefaultWindow();
_window.BackgroundColor = Color.White;
canvasView = new PenWaveCanvas();
mWindow.Add(canvasView);
_window.Add(canvasView);


canvasView.TouchEvent += OnTouchEvent;
Expand Down

0 comments on commit 4c0bdb6

Please sign in to comment.