Ajout arduino a la solution

Modif titre colone Dimmer dans Edition Univers
Ajout option aguibtn dans debug
This commit is contained in:
tzim 2013-12-26 12:45:46 +00:00
parent 07ee1ef506
commit 0e518b2cff
3 changed files with 3 additions and 1 deletions

View file

@ -6,6 +6,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{EBEAADCF-456B-43AB-A1ED-E81459AD7DDF}"
ProjectSection(SolutionItems) = preProject
dmx512_v2_ino.c = dmx512_v2_ino.c
dmx512_v2_ino\dmx512_v2_ino.ino = dmx512_v2_ino\dmx512_v2_ino.ino
EndProjectSection
EndProject
Global

View file

@ -19,6 +19,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<Commandlineparameters>aguibtn</Commandlineparameters>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>

View file

@ -133,7 +133,7 @@ namespace DMX2
var idCol = new Gtk.TreeViewColumn();
var idCell = new Gtk.CellRendererText();
idCol.Title = "ID";
idCol.Title = "Dimmer";
idCol.PackStart(idCell,true);
idCol.SetCellDataFunc(idCell, new Gtk.TreeCellDataFunc( RenderDimmerID) );
tvDimm.AppendColumn(idCol);