Skip to content

Commit

Permalink
#32
Browse files Browse the repository at this point in the history
  • Loading branch information
AndnixSH committed Jan 30, 2025
1 parent e4a8886 commit cb69d6b
Show file tree
Hide file tree
Showing 3 changed files with 4,628 additions and 2,286 deletions.
7 changes: 7 additions & 0 deletions APKToolGUI/Controls/DarkTheme.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ public static void SetTheme(Control.ControlCollection container, Form form)

public static void SetThemeTabControl(Control component, Control.ControlCollection container)
{
if (component is SplitContainer)
{
foreach (Control control in component.Controls)
{
SetThemeTabControl(control, container);
}
}
if (component is TabControl)
{
((TabControl)component).DrawMode = TabDrawMode.OwnerDrawFixed;
Expand Down
30 changes: 26 additions & 4 deletions APKToolGUI/Forms/FormMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cb69d6b

Please sign in to comment.