mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
0a7bd9f636
Changes since 5bf51d0: Large scale cleanup & refactoring. Sound Propagation Mode: you can now click on doublesided linedefs to toggle sound blocking flag. Sound Environment Mode: you can now click on doublesided linedefs to toggle sound zone boundary flag. Sound Propagation Mode: reimplemented the highlighting of non-deaf things. Things are now highlighted using selection color. Removed "Show tooltips" checkbox. Tooltips are now always enabled. Fixed, Sound Environment Mode: thing tooltip about multiple active sound environment things was shown even when there was only one active sound environment thing. Fixed, Sound Environment Mode: "Configure colors" toolbar button was not working because of missing action. Fixed, cosmetic: "Configure colors" toolbar icon was missing a tooltip. Fixed, cosmetic: display was not redrawn after changing colors using "Color configuration" window.
21 lines
476 B
C#
21 lines
476 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.SoundPropagationMode
|
|
{
|
|
public partial class MenusForm : Form
|
|
{
|
|
public ToolStripButton ColorConfiguration { get { return colorconfiguration; } }
|
|
|
|
public MenusForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
// This invokes an action from control event
|
|
private void InvokeTaggedAction(object sender, EventArgs e)
|
|
{
|
|
General.Interface.InvokeTaggedAction(sender, e);
|
|
}
|
|
}
|
|
}
|