Removed stripes from gcode table, fixed a tiny bug

master
Gina Häußge 2013-02-03 22:34:52 +01:00
parent 7d4dc54bdf
commit 0bcbd20213
2 changed files with 2 additions and 2 deletions

View File

@ -356,7 +356,7 @@ class Printer():
self._timelapse.onPrintjobStarted(self._filename)
# forward relevant state changes to gcode manager
if oldState == self._comm.STATE_PRINTING:
if self._comm is not None and oldState == self._comm.STATE_PRINTING:
if state == self._comm.STATE_OPERATIONAL:
self._gcodeManager.printSucceeded(self._filename)
elif state == self._comm.STATE_CLOSED or state == self._comm.STATE_ERROR or state == self._comm.STATE_CLOSED_WITH_ERROR:

View File

@ -79,7 +79,7 @@
</div>
<div class="accordion-body collapse in overflow_visible" id="files">
<div class="accordion-inner">
<table class="table table-striped table-hover table-condensed table-hover" id="gcode_files">
<table class="table table-condensed table-hover" id="gcode_files">
<thead>
<tr>
<th class="gcode_files_name">Name</th>