record-station Record Station
IHM Simple d'utilisation pour la numérisation audio

Browse the code

Differences between 31 and 32 on /.
Number of edited files: 1 (0 added, 0 deleted and 1 modified)
Author: Stun
Log message: Suppression des adjustSize() qui entrainait des bugs en fullscreen

Date: 2010-02-08 15:10:41

Added file(s) Deleted file(s) Modified file(s)

 

Old New Code
119 119
{
120 120
	//Start_widget->setVisible(newVal);
121 121
	MainStackedWidget->setCurrentIndex(0);
122  
	adjustSize();
  122
	//adjustSize();
123 123
}
124 124
void MainWindow::Widget_SettingVisible()
125 125
{
126 126
	ArtistCompletLoader->setKeyPath("/media/" + Dieu->GetMediaPath());
127 127
	ArtistCompletLoader->start();
128 128
	MainStackedWidget->setCurrentIndex(1);
129  
	adjustSize();
  129
	//adjustSize();
130 130
}
131 131
void MainWindow::Widget_RecordVisible()
132 132
{
133 133
	MainStackedWidget->setCurrentIndex(2);
134  
	adjustSize();
  134
	//adjustSize();
135 135
}
136 136
void MainWindow::Widget_SettingSoundVisible()
137 137
{
138 138
	MainStackedWidget->setCurrentIndex(3);
139  
	adjustSize();
  139
	//adjustSize();
140 140
}
141 141
void MainWindow::EnableBtn_finenregistrement(bool newVal)
142 142
{
192 192
		qDebug() << "Info :" << "Commande :" << SoundManagerlCMD;
193 193
	#endif
194 194
	SoundManager->start(SoundManagerlCMD);
195  
}
  195
}
196 196