fixed line-endings on *.cs
This commit is contained in:
@@ -16,22 +16,22 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with OpenRA. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
||||
using OpenRA.Graphics;
|
||||
using System.Drawing;
|
||||
|
||||
namespace OpenRA.Widgets
|
||||
{
|
||||
class CheckboxWidget : Widget
|
||||
{
|
||||
public override void Draw()
|
||||
{
|
||||
if (!Visible)
|
||||
{
|
||||
base.Draw();
|
||||
return;
|
||||
}
|
||||
namespace OpenRA.Widgets
|
||||
{
|
||||
class CheckboxWidget : Widget
|
||||
{
|
||||
public override void Draw()
|
||||
{
|
||||
if (!Visible)
|
||||
{
|
||||
base.Draw();
|
||||
return;
|
||||
}
|
||||
|
||||
var selected = InputHandler.Value != null ? InputHandler.Value.GetState(this) : false;
|
||||
|
||||
@@ -47,9 +47,9 @@ namespace OpenRA.Widgets
|
||||
Bounds.Height - 9),
|
||||
Color.White);
|
||||
Game.chrome.lineRenderer.Flush();
|
||||
}
|
||||
|
||||
base.Draw();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
base.Draw();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user