Skip to content

Commit

Permalink
Merge pull request #53 from bhball22/51-comment-out-code
Browse files Browse the repository at this point in the history
51 comment out code
  • Loading branch information
bhball22 authored Apr 26, 2022
2 parents 1f7b4ea + 7bb074b commit 6c02385
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!DOCTYPE html>
<!-- This file is required for a node.js application and informs users if they do not have javascript enabled. -->
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
4 changes: 3 additions & 1 deletion public/main.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//This file runs the app as both a standalone and as a locally hosted web application on http://localhost:3000.

const { app, BrowserWindow, Menu } = require('electron');
const path = require('path');
const { setupTitlebar, attachTitlebarToWindow } = require('custom-electron-titlebar/main');
Expand Down Expand Up @@ -71,4 +73,4 @@ app.on('before-quit' , (e) => {
}));
});

app.commandLine.appendSwitch('auto-detect','false');
app.commandLine.appendSwitch('auto-detect','false');
4 changes: 3 additions & 1 deletion public/preload.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//This file allows us to customize the app's title bar style and contents.

const { Titlebar, Color } = require('custom-electron-titlebar');
const path = require('path');

Expand All @@ -7,4 +9,4 @@ window.addEventListener('DOMContentLoaded', () => {
titlebar = new Titlebar({
backgroundColor: Color.fromHex("#1c2224"),
menu: null
})})
})})
4 changes: 3 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* This file contains the base styling for the panes and buttons necessary for them to appear in their specific positions and not overlap. */

.ViewPort{
overflow: hidden;
justify-self:start;
Expand Down Expand Up @@ -108,4 +110,4 @@

#buttonGridViewPort{
display: none;
}
}
2 changes: 2 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// This file controls the side panes, contains the buttons and the functions they are linked to, and edits the css properties of the panes.

import './App.css';
import Mapper from './Componets/Mapper'
import NavButton from './Componets/NavButton';
Expand Down

0 comments on commit 6c02385

Please sign in to comment.