瀏覽代碼

ThePimp: do not attempt to save a file if there is no open image.

git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/libpipi/trunk@2931 92316355-f0b4-4df1-b90c-862c8a59935f
remotes/tiles
sam 16 年之前
父節點
當前提交
011761076d
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      ThePimp/MainWindow.cs

+ 3
- 1
ThePimp/MainWindow.cs 查看文件

@@ -50,7 +50,7 @@ namespace ThePimp
}

while(notebook1.NPages > 0)
notebook1.RemovePage(0);
notebook1.RemovePage(0);
int n = notebook1.AppendPage(new PictureView(p),
new Label(p.FileName));
notebook1.Page = n;
@@ -86,6 +86,8 @@ namespace ThePimp

protected virtual void OnSaveAsActionActivated (object sender, System.EventArgs e)
{
if(notebook1.NPages <= 0)
return;
SaveFile save = new SaveFile();
PictureView view = notebook1.CurrentPageWidget as PictureView;
save.Save(view.Picture);


Loading…
取消
儲存