Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Pinta.Core/Actions/EffectsActions.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
//
//
// EffectsActions.cs
//
//
// Author:
// Jonathan Pobst <[email protected]>
//
//
// Copyright (c) 2010 Jonathan Pobst
//
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Expand Down Expand Up @@ -47,7 +47,7 @@ public void AddEffect (string category, Command action)

if (!Menus.ContainsKey (category)) {
var category_menu = Gio.Menu.New ();
effects_menu.AppendMenuItemSorted (Gio.MenuItem.NewSubmenu (Translations.GetString (category), category_menu));
effects_menu.AppendMenuItemSorted (Gio.MenuItem.NewSubmenu (category, category_menu));
Menus.Add (category, category_menu);
}

Expand Down
2 changes: 1 addition & 1 deletion Pinta.Gui.Widgets/Widgets/ColorPickerDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ internal ColorPickerDialog (

SetTitlebar (titleBar);

Title = Translations.GetString (windowTitle);
Title = windowTitle;
TransientFor = parentWindow;
Modal = false;
IconName = Resources.Icons.ImageResizeCanvas;
Expand Down
Loading