mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-19 04:52:30 +01:00
- Spacebar works now in the seekbar
- Show utf-8 times character instead of x in the album cover exporter.
This commit is contained in:
parent
f805c003eb
commit
94d3de4b81
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>391</width>
|
<width>608</width>
|
||||||
<height>412</height>
|
<height>412</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -143,7 +143,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_2">
|
<widget class="QLabel" name="label_2">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>x</string>
|
<string notr="true">×</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -2324,3 +2324,18 @@ void MainWindow::ShowConsole() {
|
|||||||
Console* console = new Console(app_, this);
|
Console* console = new Console(app_, this);
|
||||||
console->show();
|
console->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::keyPressEvent(QKeyEvent* event) {
|
||||||
|
if(event->key() == Qt::Key_Space) {
|
||||||
|
app_->player()->PlayPause();
|
||||||
|
event->accept();
|
||||||
|
} else if(event->key() == Qt::Key_Left) {
|
||||||
|
ui_->track_slider->Seek(-1);
|
||||||
|
event->accept();
|
||||||
|
} else if(event->key() == Qt::Key_Right) {
|
||||||
|
ui_->track_slider->Seek(1);
|
||||||
|
event->accept();
|
||||||
|
} else {
|
||||||
|
QMainWindow::keyPressEvent(event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -121,6 +121,7 @@ class MainWindow : public QMainWindow, public PlatformInterface {
|
|||||||
void CommandlineOptionsReceived(const CommandlineOptions& options);
|
void CommandlineOptionsReceived(const CommandlineOptions& options);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
void keyPressEvent(QKeyEvent* event);
|
||||||
void resizeEvent(QResizeEvent* event);
|
void resizeEvent(QResizeEvent* event);
|
||||||
void closeEvent(QCloseEvent* event);
|
void closeEvent(QCloseEvent* event);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user