a bit more cleanup
This commit is contained in:
parent
06e1149cfe
commit
2c66e3043c
|
@ -120,7 +120,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
if (newTool is Form form)
|
||||
{
|
||||
form.Owner = GlobalWin.MainForm;
|
||||
form.Owner = _owner;
|
||||
}
|
||||
|
||||
if (isExternal)
|
||||
|
@ -211,12 +211,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
var form = (Form)tool;
|
||||
ToolStripItemCollection dest = null;
|
||||
var oldsize = form.Size; // this should be the right time to grab this size
|
||||
var oldSize = form.Size; // this should be the right time to grab this size
|
||||
foreach (Control c in form.Controls)
|
||||
{
|
||||
if (c is MenuStrip)
|
||||
if (c is MenuStrip ms)
|
||||
{
|
||||
var ms = c as MenuStrip;
|
||||
foreach (ToolStripMenuItem submenu in ms.Items)
|
||||
{
|
||||
if (submenu.Text.Contains("Settings"))
|
||||
|
@ -318,7 +317,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
settings.RestoreDefaults();
|
||||
RefreshSettings(form, dest, settings, idx);
|
||||
form.Size = oldsize;
|
||||
form.Size = oldSize;
|
||||
|
||||
form.GetType()
|
||||
.GetMethodsWithAttrib(typeof(RestoreDefaultsAttribute))
|
||||
|
|
|
@ -189,6 +189,7 @@
|
|||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Autosave/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=backcolor/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Bezier/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Bizware/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=blitter/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Bools/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=botting/@EntryIndexedValue">True</s:Boolean>
|
||||
|
@ -300,6 +301,7 @@
|
|||
<s:Boolean x:Key="/Default/UserDictionary/Words/=scanlines/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Screenshot/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Screensize/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=shaders/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=speccy/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Sram/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=sSeeki/@EntryIndexedValue">True</s:Boolean>
|
||||
|
|
|
@ -100,7 +100,7 @@ namespace BizHawk.Bizware.BizwareGL
|
|||
void BeginScene();
|
||||
|
||||
/// <summary>
|
||||
/// Indicates end of scene rendering; use after alldraw calls as per normal
|
||||
/// Indicates end of scene rendering; use after all draw calls as per normal
|
||||
/// </summary>
|
||||
void EndScene();
|
||||
|
||||
|
@ -173,7 +173,7 @@ namespace BizHawk.Bizware.BizwareGL
|
|||
void SetTextureWrapMode(Texture2d tex, bool clamp);
|
||||
|
||||
/// <summary>
|
||||
/// Loads the texture with new data. This isnt supposed to be especially versatile, it just blasts a bitmap buffer into the texture
|
||||
/// Loads the texture with new data. This isn't supposed to be especially versatile, it just blasts a bitmap buffer into the texture
|
||||
/// </summary>
|
||||
void LoadTextureData(Texture2d tex, BitmapBuffer bmp);
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace BizHawk.Bizware.BizwareGL
|
||||
{
|
||||
|
@ -17,7 +16,7 @@ namespace BizHawk.Bizware.BizwareGL
|
|||
|
||||
/// <summary>
|
||||
/// Makes this control current for rendering operations.
|
||||
/// Note that at this time, the window size shouldnt change until End() or else something bad might happen
|
||||
/// Note that at this time, the window size shouldn't change until End() or else something bad might happen
|
||||
/// Please be aware that this might change the rendering context, meaning that some things you set without calling Begin/End might not be affected
|
||||
/// </summary>
|
||||
void Begin();
|
||||
|
@ -27,7 +26,7 @@ namespace BizHawk.Bizware.BizwareGL
|
|||
/// NOTE: DO NOT EXPECT TO SEE BEGIN/END CALLED IN PAIRS, STRICTLY.
|
||||
/// this is more about GL context management than anything else.
|
||||
/// See GLManager for details.
|
||||
/// In particular, dont expect to have End() called before doing certain things. Maybe use SwapBuffers instead
|
||||
/// In particular, don't expect to have End() called before doing certain things. Maybe use SwapBuffers instead
|
||||
/// </summary>
|
||||
void End();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue